@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --bg: #FAF8F5;
  --bg-white: #FFFFFF;
  --bg-card: #FFFFFF;
  --bg-warm: #F3EDE6;
  --bg-overlay: rgba(250, 248, 245, 0.92);
  --text: #1C1917;
  --text-secondary: #78716C;
  --text-tertiary: #A8A29E;
  --text-light: #D6D3D1;
  --border: rgba(28, 25, 23, 0.08);
  --border-medium: rgba(28, 25, 23, 0.15);
  --accent: #92400E;
  --accent-light: #D97706;
  --accent-bg: rgba(146, 64, 14, 0.06);
  --sale: #B91C1C;
  --sale-bg: rgba(185, 28, 28, 0.06);
  --success: #166534;
  --badge-bg: #1C1917;
  --badge-text: #FAF8F5;
  --radius-sm: 2px;
  --radius-md: 6px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1400px;
  --header-h: 72px;
  --transition: 300ms cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition-fast: 150ms ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
main { margin: 0; padding: 0; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.65; font-size: 16px; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
/* Overflow safety */
.product-layout > * { min-width: 0; max-width: 100%; }
.product-gallery, .product-info { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.gallery-main, .gallery-main img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--text-light); border-radius: 10px; }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar { background: var(--text); color: var(--bg); text-align: center; padding: 10px 24px; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; }
.announcement-bar a { text-decoration: underline; text-underline-offset: 2px; margin-left: 6px; }
.announcement-bar .container { max-width: 100%; padding: 0; }

/* ===== HEADER ===== */
.site-header { position: sticky; top: 0; z-index: 100; background: var(--bg-overlay); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--border); height: var(--header-h); transition: background var(--transition); }
.header-inner { max-width: var(--container); margin: 0 auto; padding: 0 40px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-heading); font-size: 22px; font-weight: 600; letter-spacing: -0.01em; color: var(--text); }
.main-nav { display: flex; align-items: center; gap: 32px; }
.nav-link { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-secondary); transition: color var(--transition-fast); position: relative; }
.nav-link::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--text); transition: width var(--transition); }
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--text); transition: background var(--transition-fast); font-size: 18px; }
.icon-btn:hover { background: var(--border); }

/* Search Overlay */
.search-overlay { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-white); border-bottom: 1px solid var(--border); padding: 16px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.search-overlay.open { display: block; }
.search-form { display: flex; align-items: center; gap: 12px; }
.search-form svg { flex-shrink: 0; color: var(--text-tertiary); }
.search-input { flex: 1; border: none; outline: none; font-size: 15px; background: transparent; color: var(--text); }
.search-close { color: var(--text-tertiary); transition: color var(--transition-fast); }
.search-close:hover { color: var(--text); }

/* Mobile Menu */
.mobile-menu { display: none; }
.mobile-menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 50%; color: var(--text); }
.mobile-menu-toggle:hover { background: var(--border); }

/* Mobile Nav Panel */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.3); z-index: 200; opacity: 0; transition: opacity 400ms ease; }
.mob-overlay.open { opacity: 1; }
.mob-panel { position: fixed; top: 0; right: 0; bottom: 0; width: 380px; max-width: 90vw; background: var(--bg-white); z-index: 201; transform: translateX(100%); transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; }
.mob-panel.open { transform: translateX(0); }
.mob-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 28px; border-bottom: 1px solid var(--border); }
.mob-close { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.mob-close:hover { background: var(--border); }
.mob-links { flex: 1; overflow-y: auto; padding: 12px 0; }
.mob-links a { display: block; padding: 16px 28px; font-family: var(--font-heading); font-size: 20px; font-weight: 500; color: var(--text); transition: background var(--transition-fast); }
.mob-links a:hover { background: var(--bg); }

/* ===== CONTAINER ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }

/* ===== HERO ===== */
.hero-section { position: relative; overflow: hidden; margin: 0; padding: 0; }
.hero-media { position: relative; width: 100%; aspect-ratio: 16/9; overflow: hidden; }
@media(min-width:1024px) { .hero-media { aspect-ratio: 21/9; } }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-fallback { width: 100%; height: 100%; background: linear-gradient(160deg, #E8DDD0 0%, #D4C4B0 30%, #C9B99A 60%, #BFB08E 100%); display: flex; align-items: center; justify-content: center; }
.hero-fallback-text { font-family: var(--font-heading); font-size: clamp(60px, 12vw, 140px); font-weight: 400; color: rgba(255,255,255,0.5); font-style: italic; }
.hero-body { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.hero-card { background: var(--bg-overlay); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); padding: 56px 48px; max-width: 560px; text-align: center; border: 1px solid var(--border); }
@media(max-width:767px) { .hero-card { padding: 36px 28px; margin: 20px; } }
.hero-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.hero-heading { font-family: var(--font-heading); font-size: clamp(32px, 5vw, 52px); font-weight: 500; line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 16px; }
.hero-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn-primary, .btn-outline-hz { display: inline-flex; align-items: center; justify-content: center; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; padding: 15px 36px; border-radius: var(--radius-sm); transition: all var(--transition); white-space: nowrap; }
.btn-primary { background: var(--text); color: var(--bg); }
.btn-primary:hover { background: #44403C; transform: translateY(-1px); }
.btn-outline-hz { background: transparent; color: var(--text); border: 1.5px solid var(--text); }
.btn-outline-hz:hover { background: var(--text); color: var(--bg); }
.product-actions .btn-primary { width: 100%; max-width: 100%; padding: 18px 36px; font-size: 14px; letter-spacing: 0.08em; border-radius: var(--radius-sm); background: var(--text); color: var(--bg); box-shadow: none; }
.product-actions .btn-primary:hover { background: #44403C; transform: translateY(-1px); }
.product-actions .btn-primary[disabled], .product-actions .btn-primary.btn-off { opacity: 0.4; pointer-events: none; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.section-title { font-family: var(--font-heading); font-size: clamp(28px, 4vw, 42px); font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; }
.section-line { width: 40px; height: 1px; background: var(--text); margin: 20px auto 0; }
.section-desc { font-size: 15px; color: var(--text-secondary); margin-top: 16px; max-width: 480px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.view-all-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text); margin-top: 24px; transition: gap var(--transition); }
.view-all-link:hover { gap: 14px; }

/* ===== TRUST ROW ===== */
.trust-row { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
@media(min-width:768px) { .trust-row { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 36px 20px; gap: 10px; border-right: 1px solid var(--border); }
.trust-item:last-child { border-right: none; }
@media(max-width:767px) { .trust-item:nth-child(even) { border-right: none; } .trust-item:nth-child(odd) { border-right: 1px solid var(--border); } }
.trust-icon { font-size: 22px; color: var(--text); margin-bottom: 4px; }
.trust-label { font-size: 13px; font-weight: 600; letter-spacing: 0.02em; }
.trust-sub { font-size: 12px; color: var(--text-tertiary); line-height: 1.5; }

/* ===== PRODUCT GRID ===== */
.products-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
@media(min-width:768px) { .products-grid { gap: 28px; } }
@media(min-width:1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; } }

/* ===== PRODUCT CARD ===== */
.product-card { position: relative; display: block; }
.product-card .card-image { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius-md); background: var(--bg-warm); margin-bottom: 14px; }
.product-card .card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 700ms cubic-bezier(0.25, 0.1, 0.25, 1); }
.product-card:hover .card-image img { transform: scale(1.03); }
.product-card .card-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 36px; background: var(--bg-warm); border-radius: var(--radius-md); }
.card-badge { position: absolute; top: 12px; left: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: var(--radius-sm); }
.badge-new { background: var(--badge-bg); color: var(--badge-text); }
.badge-sale { background: var(--sale); color: #fff; }
.badge-sold { background: var(--text-tertiary); color: #fff; }
.product-card .card-brand { font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 4px; }
.product-card .card-title { font-family: var(--font-heading); font-size: 16px; font-weight: 500; line-height: 1.35; margin-bottom: 6px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; transition: color var(--transition-fast); }
.product-card:hover .card-title { color: var(--accent); }
.product-card .card-price { display: flex; align-items: baseline; gap: 8px; font-size: 14px; }
.price-current { font-weight: 600; }
.price-original { font-weight: 400; color: var(--text-tertiary); text-decoration: line-through; font-size: 13px; }
.price-sale { color: var(--sale); }

/* ===== CATEGORY GRID ===== */
.categories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
@media(min-width:768px) { .categories-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
.category-card { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius-lg); background: var(--bg-warm); display: block; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 800ms cubic-bezier(0.25, 0.1, 0.25, 1); }
.category-card:hover img { transform: scale(1.04); }
.category-card-body { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; background: linear-gradient(transparent, rgba(28, 25, 23, 0.55)); }
.category-card-title { font-family: var(--font-heading); font-size: 20px; font-weight: 500; color: #fff; }
.category-card-link { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.85); margin-top: 8px; text-decoration: underline; text-underline-offset: 2px; }
.category-card-fallback { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; background: var(--bg-warm); gap: 8px; }
.category-card-fallback i { font-size: 28px; color: var(--text-light); }
.category-card-fallback span { font-size: 13px; font-weight: 500; color: var(--text-tertiary); }

/* ===== BREADCRUMB ===== */
.breadcrumb { padding: 20px 0; font-size: 12px; color: var(--text-tertiary); letter-spacing: 0.02em; }
.breadcrumb a { color: var(--text-secondary); transition: color var(--transition-fast); }
.breadcrumb a:hover { color: var(--text); }

/* ===== PRODUCT PAGE ===== */
.product-page { padding: 28px 0 80px; }
@media(min-width:768px) { .product-page { padding: 36px 0 100px; } }
.product-layout { display: grid; grid-template-columns: 1fr; gap: 36px; min-width: 0; max-width: 100%; overflow: hidden; }
@media(min-width:768px) { .product-layout { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; } }
@media(min-width:1024px) { .product-layout { gap: 80px; } }

/* Gallery */
.product-gallery { position: sticky; top: calc(var(--header-h) + 16px); min-width: 0; max-width: 100%; overflow: hidden; }
.gallery-main { aspect-ratio: 3/4; overflow: hidden; border-radius: var(--radius-lg); background: var(--bg-warm); margin-bottom: 10px; cursor: zoom-in; position: relative; }
.gallery-main img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; max-width: 100%; }
.gallery-main:hover img { transform: scale(1.04); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--text-light); font-size: 56px; }
.gallery-thumbs { display: flex; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.gallery-thumb { width: 68px; height: 88px; flex-shrink: 0; overflow: hidden; border-radius: var(--radius-sm); background: var(--bg-warm); cursor: pointer; border: 2px solid transparent; opacity: 0.6; transition: all var(--transition-fast); }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--text); opacity: 1; }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Mobile gallery dots */
.gallery-dots { display: none; justify-content: center; gap: 8px; margin-top: 12px; }
.gallery-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--text-light); transition: all var(--transition-fast); }
.gallery-dot.active { background: var(--text); width: 24px; border-radius: 4px; }

@media(max-width:767px) {
  .gallery-dots { display: flex; }
  .gallery-main { max-height: 55vh; aspect-ratio: 1/1; border-radius: var(--radius-md); }
  .gallery-thumbs { gap: 6px; }
  .gallery-thumb { width: 52px; height: 68px; }
}

/* Product Info */
.product-info { min-width: 0; max-width: 100%; overflow-wrap: break-word; word-break: break-word; }
.product-vendor { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.product-title { font-family: var(--font-heading); font-size: clamp(26px, 4vw, 36px); font-weight: 500; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 20px; }
.product-price-row { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.product-price-current { font-size: 22px; font-weight: 600; }
.product-price-original { font-size: 17px; color: var(--text-tertiary); text-decoration: line-through; }
.product-price-save { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; color: var(--sale); background: var(--sale-bg); padding: 4px 10px; border-radius: var(--radius-sm); }
.product-stock { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; margin-bottom: 28px; }
.stock-dot { width: 7px; height: 7px; border-radius: 50%; }
.stock-dot.in-stock { background: var(--success); }
.stock-dot.out-stock { background: var(--sale); }
.product-condition { display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); border: 1px solid var(--border); padding: 4px 12px; border-radius: var(--radius-sm); margin-left: 10px; }
.product-description { font-size: 15px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 28px; white-space: pre-line; }
.product-meta { font-size: 13px; color: var(--text-secondary); margin-bottom: 28px; display: flex; flex-direction: column; gap: 5px; }
.product-meta b { color: var(--text); font-weight: 600; }

/* Product Actions (Buy Now) */
.product-actions { padding-top: 28px; border-top: 1px solid var(--border); margin-bottom: 28px; }

/* Trust badges */
.product-trust { display: flex; gap: 24px; padding: 20px 0; border-top: 1px solid var(--border); flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 500; color: var(--text-secondary); letter-spacing: 0.02em; }
.trust-badge i { font-size: 15px; color: var(--text); }

/* Description Section */
.product-desc-section { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }
.product-desc-title { font-family: var(--font-heading); font-size: 18px; font-weight: 600; margin-bottom: 16px; color: var(--text); }
.product-desc-body { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.product-desc-body h2 { font-family: var(--font-heading); font-size: 16px; font-weight: 600; color: var(--text); margin: 20px 0 8px; }
.product-desc-body h3 { font-size: 14px; font-weight: 600; color: var(--text); margin: 16px 0 6px; }
.product-desc-body p { margin-bottom: 12px; }
.product-desc-body ul, .product-desc-body ol { padding-left: 20px; margin-bottom: 12px; }
.product-desc-body li { margin-bottom: 6px; line-height: 1.6; }
.product-desc-body strong { color: var(--text); font-weight: 600; }
.product-desc-body table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 14px; }
.product-desc-body th, .product-desc-body td { padding: 10px 14px; text-align: left; border: 1px solid var(--border); }
.product-desc-body th { background: var(--bg-warm); font-weight: 600; color: var(--text); font-size: 13px; }

/* Product Policies */
.product-policies { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--border); }
@media(max-width:767px) { .product-policies { grid-template-columns: 1fr; } }
.policy-card { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 8px; padding: 18px 14px; border: 1px solid var(--border); border-radius: var(--radius-md); transition: all var(--transition); }
.policy-card:hover { background: var(--bg-warm); border-color: var(--border-medium); }
.policy-card i { font-size: 18px; color: var(--text); }
.policy-card span { font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text); }

/* ===== COLLECTION / SHOP PAGE ===== */
.collection-header { padding: 28px 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.collection-title { font-family: var(--font-heading); font-size: clamp(30px, 5vw, 44px); font-weight: 500; letter-spacing: -0.02em; }
.collection-count { font-size: 14px; color: var(--text-secondary); margin-top: 8px; }
.collection-products { padding: 28px 0 80px; }
.collection-empty { text-align: center; padding: 100px 24px; }
.collection-empty i { font-size: 48px; color: var(--text-light); margin-bottom: 20px; }
.collection-empty p { font-size: 16px; color: var(--text-secondary); }

/* ===== PAGINATION ===== */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; padding: 40px 0 80px; }
.page-btn { width: 42px; height: 42px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 500; color: var(--text); border: 1px solid var(--border); border-radius: var(--radius-sm); transition: all var(--transition-fast); }
.page-btn:hover { background: var(--bg-warm); border-color: var(--border-medium); }
.page-btn.active { background: var(--text); color: var(--bg); border-color: var(--text); }
.page-btn.disabled { opacity: 0.25; pointer-events: none; }
.page-btn.ellipsis { border: none; background: none; color: var(--text-tertiary); cursor: default; pointer-events: none; font-size: 14px; letter-spacing: 2px; }

/* ===== CMS / POLICY PAGE ===== */
.page-header { padding: 56px 0 36px; text-align: center; }
.page-title { font-family: var(--font-heading); font-size: clamp(30px, 5vw, 44px); font-weight: 500; letter-spacing: -0.02em; }
.page-body { padding: 0 0 80px; max-width: 800px; margin: 0 auto; }
.page-body h3 { font-family: var(--font-heading); font-size: 20px; font-weight: 500; margin-top: 40px; margin-bottom: 14px; }
.page-body p { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 18px; }
.page-body ul, .page-body ol { padding-left: 24px; margin-bottom: 18px; }
.page-body li { font-size: 15px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 8px; }
.page-body strong { color: var(--text); font-weight: 600; }
.page-body table { width: 100%; border-collapse: collapse; margin: 24px 0; font-size: 14px; }
.page-body th, .page-body td { padding: 14px 18px; text-align: left; border: 1px solid var(--border); }
.page-body th { background: var(--bg-warm); font-weight: 600; color: var(--text); font-size: 13px; letter-spacing: 0.02em; }
.page-body td { color: var(--text-secondary); }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 56px; padding: 0 0 80px; }
@media(min-width:768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card { padding: 28px; border: 1px solid var(--border); border-radius: var(--radius-lg); transition: border-color var(--transition); }
.contact-card:hover { border-color: var(--border-medium); }
.contact-card-icon { width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: var(--bg-warm); border-radius: var(--radius-md); margin-bottom: 14px; font-size: 17px; color: var(--text); }
.contact-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 4px; }
.contact-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 14px 18px; font-size: 14px; border: 1px solid var(--border); border-radius: var(--radius-md); background: var(--bg-white); color: var(--text); outline: none; transition: border-color var(--transition); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--text); }
.contact-form textarea { min-height: 130px; resize: vertical; }

/* ===== ABOUT ===== */
.about-hero { padding: 80px 0 56px; text-align: center; }
.about-hero h1 { font-family: var(--font-heading); font-size: clamp(36px, 7vw, 56px); font-weight: 500; letter-spacing: -0.03em; margin-bottom: 16px; }
.about-hero p { font-size: 17px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; padding: 56px 0 80px; }
@media(min-width:768px) { .about-features { grid-template-columns: repeat(4, 1fr); gap: 36px; } }
.about-feature { text-align: center; padding: 28px 20px; }
.about-feature-icon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; font-size: 22px; color: var(--text); border: 1px solid var(--border); border-radius: 50%; }
.about-feature h4 { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.about-feature p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ===== FOOTER ===== */
.site-footer { background: var(--text); color: var(--bg); }
.footer-main { padding: 64px 0 48px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media(min-width:480px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; } }
.footer-brand .logo { color: var(--bg); margin-bottom: 14px; display: block; }
.footer-brand p { font-size: 14px; color: var(--text-light); line-height: 1.7; max-width: 300px; }
.footer-col h5 { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--bg); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 14px; color: var(--text-light); transition: color var(--transition-fast); }
.footer-col a:hover { color: var(--bg); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--text-light); }
.footer-pay { display: flex; align-items: center; gap: 10px; }
.footer-pay span { font-size: 11px; color: var(--text-light); letter-spacing: 0.02em; }
.footer-pay i { font-size: 24px; color: var(--text-light); }

/* ===== UTILITIES ===== */
.fade-in { animation: fadeUp 0.5s ease forwards; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

.toast-wrap { position: fixed; top: 24px; right: 24px; z-index: 9999; display: flex; flex-direction: column; gap: 8px; pointer-events: none; }
.toast { pointer-events: auto; padding: 14px 22px; border-radius: var(--radius-md); font-size: 14px; font-weight: 500; color: #fff; box-shadow: 0 12px 32px rgba(0,0,0,0.15); animation: tIn 0.3s ease forwards; }
.toast-ok { background: var(--success); }
.toast-err { background: var(--sale); }
.toast-warn { background: var(--accent-light); }
@keyframes tIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
@keyframes tOut { from { transform: translateX(0); opacity: 1; } to { transform: translateX(100%); opacity: 0; } }

@media print { .site-header, .site-footer, .announcement-bar, .product-actions { display: none; } }
@media(max-width:767px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .container { padding: 0 16px; max-width: 100%; overflow-x: hidden; }
  .header-inner { padding: 0 16px; }

  /* Home page section padding override */
  section[style*="padding:80px"] { padding: 40px 0 !important; }
  section[style*="padding:0 0 80px"] { padding: 0 0 40px !important; }
  section[style*="padding:100px"] { padding: 50px 0 !important; }

  /* Hero mobile */
  .hero-media { aspect-ratio: 4/5; }
  .hero-card { padding: 28px 20px !important; margin: 12px !important; }
  .hero-heading { font-size: clamp(24px, 7vw, 32px); }
  .hero-text { font-size: 13px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn-primary, .hero-actions .btn-outline-hz { width: 100%; padding: 12px 24px; font-size: 12px; }

  /* Trust row mobile */
  .trust-row { margin: -12px 0 32px; }
  .trust-item { padding: 16px 10px; }
  .trust-icon { font-size: 18px; }
  .trust-label { font-size: 11px; }
  .trust-sub { font-size: 10px; }

  /* Section headers mobile */
  .section-header { margin-bottom: 24px; }
  .section-title { font-size: clamp(20px, 5vw, 28px); }
  .section-desc { font-size: 13px; }
  .view-all-link { font-size: 12px; }

  /* Product Page Mobile */
  .product-page { padding: 12px 0 40px; }
  .product-layout { gap: 20px; padding: 0; }
  .product-layout > * { min-width: 0; max-width: 100%; overflow: hidden; }
  .product-gallery { position: static; }
  .gallery-main { max-height: 55vh; aspect-ratio: 1/1; border-radius: var(--radius-md); margin-bottom: 8px; }
  .gallery-thumbs { gap: 6px; padding: 0 4px; }
  .gallery-thumb { width: 52px; height: 68px; }
  .gallery-dots { display: flex; }

  .product-vendor { font-size: 11px; margin-bottom: 6px; }
  .product-title { font-size: clamp(20px, 5vw, 28px); margin-bottom: 14px; line-height: 1.2; }
  .product-price-row { gap: 10px; margin-bottom: 16px; }
  .product-price-current { font-size: 20px; }
  .product-price-original { font-size: 15px; }
  .product-stock { font-size: 12px; margin-bottom: 16px; }
  .product-condition { font-size: 10px; padding: 3px 8px; margin-left: 6px; }
  .product-description { font-size: 14px; line-height: 1.65; margin-bottom: 20px; white-space: normal; word-break: break-word; overflow-wrap: break-word; }
  .product-meta { font-size: 12px; margin-bottom: 20px; gap: 4px; }
  .product-actions { padding-top: 16px; margin-bottom: 16px; }
  .product-actions .btn-primary { padding: 16px 24px; font-size: 13px; }
  .product-trust { gap: 12px; padding: 14px 0; flex-wrap: wrap; }
  .trust-badge { font-size: 11px; gap: 5px; }
  .trust-badge i { font-size: 13px; }
  .product-accordion { margin-top: 12px; }
  .product-desc-title { font-size: 16px; margin-bottom: 12px; }
  .product-desc-body { font-size: 13px; line-height: 1.7; }
  .product-desc-section { margin-top: 16px; padding-top: 16px; }
  .product-policies { grid-template-columns: 1fr; gap: 8px; margin-top: 20px; padding-top: 16px; }
  .policy-card { flex-direction: row; padding: 12px 14px; gap: 10px; text-align: left; justify-content: flex-start; }

  /* Breadcrumb Mobile */
  .breadcrumb { padding: 10px 0; font-size: 11px; }

  /* Collection Mobile */
  .collection-header { padding: 16px 0; }
  .collection-title { font-size: clamp(22px, 5vw, 32px); }
  .collection-count { font-size: 12px; }
  .collection-products { padding: 16px 0 40px; }
  .products-grid { gap: 12px; }
  .product-card .card-info { padding: 10px; }
  .product-card .card-title { font-size: 13px; }
  .product-card .card-price { font-size: 13px; }

  /* Pagination Mobile */
  .pagination { gap: 4px; padding: 24px 0 40px; }
  .page-btn { width: 36px; height: 36px; font-size: 12px; }

  /* About Mobile */
  .about-hero { padding: 40px 0 28px; }
  .about-hero h1 { font-size: clamp(28px, 7vw, 40px); }
  .about-features { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 28px 0 40px; }
  .about-feature { padding: 16px 12px; }

  /* Contact Mobile */
  .contact-grid { gap: 32px; padding: 0 0 40px; }
  .contact-card { padding: 20px; }

  /* CMS Page Mobile */
  .page-header { padding: 28px 0 20px; }
  .page-body { padding: 0 0 40px; }
  .page-body h3 { font-size: 16px; margin-top: 24px; }
  .page-body p, .page-body li { font-size: 13px; }

  /* Footer Mobile */
  .footer-main { padding: 32px 0 24px; }
  .footer-grid { gap: 24px; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* === Suggested Products Grid === */
.pg-suggest {
  margin-top: 80px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}
.pg-suggest-head {
  text-align: center;
  margin-bottom: 40px;
}
.pg-suggest-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.pg-suggest-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.pg-suggest-line {
  width: 40px;
  height: 1px;
  background: var(--text);
  margin: 18px auto 0;
}
.pg-suggest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .pg-suggest-grid { gap: 28px; }
}
@media (min-width: 1024px) {
  .pg-suggest-grid { grid-template-columns: repeat(4, 1fr); gap: 28px; }
}

/* Mobile */
@media (max-width: 767px) {
  .pg-suggest { margin-top: 40px; padding-top: 28px; }
  .pg-suggest-head { margin-bottom: 24px; }
  .pg-suggest-title { font-size: clamp(20px, 5vw, 28px); }
  .pg-suggest-line { margin: 12px auto 0; }
  .pg-suggest-grid { gap: 12px; }
}

/* === VARIANT SELECTOR (Enhanced) === */
.variant-selector { margin: 1.25rem 0; position: relative; z-index: 10; }
.variant-group { margin-bottom: 1rem; }
.variant-label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.5rem; }
.variant-selected { font-weight: 400; color: var(--accent, #10b981); }
.variant-options { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.variant-btn {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--border, #1e2a23);
  border-radius: 8px;
  background: transparent;
  color: var(--text, #e8f0ec);
  font-size: 0.9rem;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 48px;
  min-height: 44px;
  text-align: center;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
  position: relative;
  z-index: 11;
  pointer-events: auto !important;
}
.variant-btn:hover {
  border-color: var(--accent, #10b981);
  color: var(--accent, #10b981);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(16,185,129,0.15);
}
.variant-btn.active {
  border-color: var(--accent, #10b981);
  background: rgba(16,185,129,0.12);
  color: var(--accent, #10b981);
  font-weight: 700;
  box-shadow: 0 0 0 2px var(--accent, #10b981);
}
.variant-btn:active {
  transform: scale(0.95);
}
.variant-btn[data-stock="0"],
.variant-btn[disabled] {
  opacity: 0.35;
  text-decoration: line-through;
  cursor: not-allowed;
  pointer-events: none !important;
}