/* SALTY DOG - Shop Page */
.shop-hero { background: linear-gradient(135deg, #071f2e, #0a3d5c); padding: 60px 0; text-align: center; }
.shop-hero-badge { display: inline-block; background: rgba(245,200,66,0.15); border: 1px solid rgba(245,200,66,0.3); color: #f5c842; font-size: 13px; font-weight: 600; padding: 6px 18px; border-radius: 20px; margin-bottom: 16px; }
.shop-hero h1 { font-size: 38px; font-weight: 800; color: #fff; margin-bottom: 12px; }
.shop-hero h1 span { color: #f5c842; }
.shop-hero p { font-size: 16px; color: rgba(255,255,255,0.75); }
.shop-categories { background: var(--white); border-bottom: 1px solid var(--border); padding: 14px 0; position: sticky; top: 0; z-index: 100; }
.shop-cats-inner { display: flex; gap: 8px; flex-wrap: wrap; }
.shop-cat { padding: 7px 16px; border-radius: 20px; font-size: 13px; color: var(--text-secondary); text-decoration: none; border: 1px solid var(--border); white-space: nowrap; transition: all 0.15s; }
.shop-cat:hover, .shop-cat.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.shop-page { padding: 32px 0 60px; max-width: 1100px; }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }
.shop-count { font-size: 14px; color: var(--text-secondary); }
.shop-note { font-size: 13px; color: #854f0b; background: #fff8e1; border: 1px solid #f5c842; padding: 6px 14px; border-radius: 20px; }
.shop-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 40px; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.product-card:hover { box-shadow: 0 6px 24px rgba(10,61,92,0.1); transform: translateY(-2px); }
.product-img { height: 200px; position: relative; background: var(--bg); display: flex; align-items: center; justify-content: center; }
.product-img img { width: 100%; height: 100%; object-fit: cover; }
.product-img-placeholder { font-size: 64px; }
.product-badge { position: absolute; top: 10px; left: 10px; background: var(--navy); color: #fff; font-size: 10px; font-weight: 700; padding: 3px 10px; border-radius: 20px; }
.product-out-of-stock { position: absolute; inset: 0; background: rgba(255,255,255,0.8); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.product-body { padding: 16px; }
.product-category { font-size: 11px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px; font-weight: 600; margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.3; }
.product-desc { font-size: 12px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 14px; }
.product-footer { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.product-price { font-size: 18px; font-weight: 700; color: var(--navy); }
.btn-add-cart { background: var(--navy); color: #fff; border: none; border-radius: 8px; padding: 8px 14px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.btn-add-cart:hover { background: #071f2e; }
.btn-add-cart:disabled { background: #ccc; cursor: not-allowed; }
.shop-coming-soon { background: linear-gradient(135deg, #0a3d5c, #0d5a8a); border-radius: 16px; padding: 36px; }
.coming-soon-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.coming-soon-icon { font-size: 40px; flex-shrink: 0; }
.coming-soon-inner h3 { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.coming-soon-inner p { font-size: 14px; color: rgba(255,255,255,0.75); }
.coming-soon-form { display: flex; gap: 8px; margin-left: auto; }
.coming-soon-form input { border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 10px 16px; font-size: 14px; background: rgba(255,255,255,0.1); color: #fff; outline: none; min-width: 200px; }
.coming-soon-form input::placeholder { color: rgba(255,255,255,0.5); }
.coming-soon-form button { background: #f5c842; color: #0a3d5c; border: none; border-radius: 8px; padding: 10px 20px; font-size: 14px; font-weight: 700; cursor: pointer; white-space: nowrap; }
/* CART */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 500; display: none; }
.cart-overlay.open { display: block; }
.cart-sidebar { position: fixed; top: 0; right: -420px; width: 400px; height: 100vh; background: var(--white); z-index: 501; transition: right 0.3s; display: flex; flex-direction: column; box-shadow: -4px 0 24px rgba(0,0,0,0.15); }
.cart-sidebar.open { right: 0; }
.cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid var(--border); }
.cart-header h3 { font-size: 18px; font-weight: 700; color: var(--text); }
.cart-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-secondary); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; color: var(--text-secondary); padding: 40px 0; font-size: 14px; }
.cart-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 3px; }
.cart-item-price { font-size: 13px; color: var(--text-secondary); }
.cart-item-qty { display: flex; align-items: center; gap: 8px; }
.cart-item-qty button { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--border); background: var(--white); cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.cart-item-qty span { font-size: 14px; font-weight: 600; color: var(--text); min-width: 20px; text-align: center; }
.cart-item-remove { background: none; border: none; cursor: pointer; font-size: 16px; }
.cart-footer { padding: 16px 24px 24px; border-top: 1px solid var(--border); }
.cart-total { display: flex; justify-content: space-between; font-size: 16px; margin-bottom: 14px; }
.cart-total strong { color: var(--navy); font-size: 20px; }
.btn-checkout-cart { width: 100%; background: var(--navy); color: #fff; border: none; border-radius: 10px; padding: 14px; font-size: 15px; font-weight: 700; cursor: pointer; margin-bottom: 8px; }
.cart-note { text-align: center; font-size: 12px; color: var(--text-secondary); }
.floating-cart { position: fixed; bottom: 24px; right: 24px; background: var(--navy); color: #fff; border: none; border-radius: 50px; padding: 14px 20px; font-size: 16px; font-weight: 700; cursor: pointer; box-shadow: 0 4px 16px rgba(10,61,92,0.3); z-index: 100; display: flex; align-items: center; gap: 8px; }
@media (max-width: 768px) {
    .shop-grid { grid-template-columns: repeat(2, 1fr); }
    .cart-sidebar { width: 100%; right: -100%; }
    .coming-soon-inner { flex-direction: column; }
    .coming-soon-form { width: 100%; }
}
