Style: Apply wishlist button style to all cart buttons

Changed cart 'Proceed to Checkout' button from btn-primary-full
to btn-outline to match wishlist button style.

All cart buttons now use btn-outline (purple outlined style):
- Proceed to Checkout: btn-primary-full → btn-outline
- Continue Shopping: already btn-outline

Files updated:
- shop.html
- contact.html
- product.html
- about.html

Cart buttons now have consistent wishlist-style appearance.
This commit is contained in:
Local Server
2026-01-14 20:49:02 -06:00
parent f818fff3a5
commit 87dcdf296d
4 changed files with 4 additions and 4 deletions

View File

@@ -116,7 +116,7 @@
<span class="summary-label">Subtotal:</span>
<span class="summary-value" id="cartSubtotal">$0.00</span>
</div>
<a href="/checkout" class="btn-primary-full"
<a href="/checkout" class="btn-outline"
>Proceed to Checkout</a
>
<a href="/shop" class="btn-outline">Continue Shopping</a>

View File

@@ -124,7 +124,7 @@
<span class="summary-label">Subtotal:</span>
<span class="summary-value" id="cartSubtotal">$0.00</span>
</div>
<a href="/checkout" class="btn-primary-full"
<a href="/checkout" class="btn-outline"
>Proceed to Checkout</a
>
<a href="/shop" class="btn-outline">Continue Shopping</a>

View File

@@ -150,7 +150,7 @@
<span class="summary-label">Subtotal:</span>
<span class="summary-value" id="cartSubtotal">$0.00</span>
</div>
<a href="/checkout" class="btn-primary-full"
<a href="/checkout" class="btn-outline"
>Proceed to Checkout</a
>
<a href="/shop" class="btn-outline">Continue Shopping</a>

View File

@@ -681,7 +681,7 @@
<span class="summary-label">Subtotal:</span>
<span class="summary-value" id="cartSubtotal">$0.00</span>
</div>
<a href="/checkout" class="btn-primary-full"
<a href="/checkout" class="btn-outline"
>Proceed to Checkout</a
>
<a href="/shop" class="btn-outline">Continue Shopping</a>