/* GlassHut — styles.css */
:root {
  --navy: #1E2D50; --navy-deep: #141E38; --navy-light: #2A3D68;
  --teal: #2A8B7A; --teal-dark: #1E6B5E; --teal-light: #A8D8D0; --teal-pale: #D4EEEA;
  --copper: #856A06; --copper-light: #A07E0A; --copper-dark: #6B5504;
  --bg: #F5F3EE; --bg-warm: #EDE9E0; --white: #FAFAF7;
  --text-dark: #1E2D50; --text-muted: #6B7A8D; --danger: #D32F2F;
  --phonepe: #5F259F; --gpay: #4285F4;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Rajdhani', 'Arial Narrow', Arial, sans-serif; background: var(--bg); color: var(--text-dark); overflow-x: hidden; }

.ornate-border { width: 100%; height: 4px; background: linear-gradient(90deg, var(--teal-light), var(--copper-light) 50%, var(--teal-light)); opacity: 0.4; }
.announcement { background: #1A2740; color: rgba(224,188,130,0.7); text-align: center; padding: 9px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; }

header { background: linear-gradient(180deg, #1F2F4F 0%, #1A2740 100%); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.15); will-change: transform; }
.nav-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 14px 40px; }
.logo-wrap { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-icon { height: 50px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-brand { font-family: 'Cormorant Garamond', Georgia; font-size: 28px; font-weight: 600; color: var(--copper-light); letter-spacing: 2px; line-height: 1; }
.logo-sub { font-size: 11px; letter-spacing: 2px; text-transform: none; color: var(--teal-light); opacity: 0.4; font-style: italic; }

nav { display: flex; align-items: center; gap: 36px; }
nav a { text-decoration: none; color: rgba(168,216,208,0.8); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; transition: all 0.3s; }
nav a:hover { color: var(--copper-light); }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icon-btn { background: none; border: none; cursor: pointer; position: relative; padding: 4px; }
.nav-icon { width: 20px; height: 20px; color: rgba(168,216,208,0.7); fill: none; stroke: rgba(168,216,208,0.7); transition: all 0.3s; }
.nav-icon-btn:hover .nav-icon { stroke: var(--copper-light); }
.cart-count { position: absolute; top: -4px; right: -6px; background: var(--copper); color: white; font-size: 10px; font-family: 'Rajdhani', sans-serif; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.cart-count.bump { animation: cartBump 0.3s ease; }
@keyframes cartBump { 0%,100%{transform:scale(1)} 50%{transform:scale(1.4)} }

/* CART DRAWER */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 200; opacity: 0; visibility: hidden; transition: all 0.3s; }
.cart-overlay.open { opacity: 1; visibility: visible; }
.cart-drawer { position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw; height: 100vh; background: var(--white); z-index: 201; transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1); display: flex; flex-direction: column; box-shadow: -10px 0 40px rgba(0,0,0,0.2); contain: layout style; }
.cart-drawer.open { right: 0; }
.cart-header { padding: 24px; border-bottom: 1px solid rgba(42,139,122,0.15); display: flex; justify-content: space-between; align-items: center; }
.cart-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); font-weight: 700; }
.cart-close { background: none; border: none; font-size: 28px; color: var(--text-muted); cursor: pointer; }
.cart-close:hover { color: var(--navy); }
.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--text-muted); }
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; opacity: 0.3; }
.cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid rgba(42,139,122,0.08); align-items: center; }
.cart-item-color { width: 50px; height: 50px; border-radius: 50%; flex-shrink: 0; box-shadow: inset 0 0 10px rgba(0,0,0,0.15); }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 600; color: var(--navy); }
.cart-item-meta { font-size: 12px; color: var(--text-muted); }
.cart-item-size { font-size: 11px; color: var(--teal); font-weight: 600; margin-top: 2px; }
.cart-qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-qty button { width: 28px; height: 28px; border: 1px solid var(--teal-light); background: var(--white); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 2px; color: var(--navy); }
.cart-qty button:hover { background: var(--teal); color: white; border-color: var(--teal); }
.cart-qty span { font-weight: 600; font-size: 15px; min-width: 20px; text-align: center; }
.cart-item-price { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 700; color: var(--copper-dark); flex-shrink: 0; }
.cart-item-remove { background: none; border: none; color: var(--text-muted); font-size: 18px; cursor: pointer; padding: 4px; }
.cart-item-remove:hover { color: var(--danger); }

.cart-footer { padding: 20px 24px; border-top: 1px solid rgba(42,139,122,0.15); background: var(--bg); overflow-y: auto; max-height: 70vh; }
.cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.cart-total-label { font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); }
.cart-total-amount { font-family: 'Cormorant Garamond', serif; font-size: 28px; font-weight: 700; color: var(--navy); }
.pay-divider { text-align: center; font-size: 11px; color: var(--text-muted); letter-spacing: 2px; text-transform: uppercase; margin: 10px 0; position: relative; }
.pay-divider::before, .pay-divider::after { content:''; position: absolute; top: 50%; width: 30%; height: 1px; background: rgba(42,139,122,0.2); }
.pay-divider::before { left: 0; }
.pay-divider::after { right: 0; }
.pay-buttons { display: flex; flex-direction: column; gap: 10px; }
.pay-btn { width: 100%; padding: 15px; border: none; border-radius: 4px; font-family: 'Rajdhani', sans-serif; font-size: 15px; font-weight: 700; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 10px; text-decoration: none; color: white; }
.pay-btn-phonepe { background: var(--phonepe); }
.pay-btn-phonepe:hover { background: #4A1D7A; }
.pay-btn-gpay { background: var(--gpay); }
.pay-btn-gpay:hover { background: #3367D6; }
.pay-btn-upi { background: var(--navy); }
.pay-btn-upi:hover { background: var(--navy-deep); }
.upi-copy-section { display: none; margin-top: 12px; padding: 14px; background: var(--white); border: 1.5px dashed var(--teal); border-radius: 4px; text-align: center; }
.upi-copy-section.show { display: block; }
.upi-id-display { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; word-break: break-all; }
.copy-btn { padding: 8px 20px; background: var(--teal); color: white; border: none; font-family: 'Rajdhani', sans-serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; cursor: pointer; border-radius: 2px; }
.copy-btn:hover { background: var(--teal-dark); }
.copy-btn.copied { background: var(--copper); }
.pay-note { text-align: center; margin-top: 10px; font-size: 11px; color: var(--text-muted); }

/* SIZE MODAL */
.size-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; opacity: 0; visibility: hidden; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.size-modal-overlay.open { opacity: 1; visibility: visible; }
.size-modal { background: var(--white); padding: 32px; max-width: 360px; width: 90%; border-radius: 4px; text-align: center; transform: translateY(20px); transition: transform 0.3s; }
.size-modal-overlay.open .size-modal { transform: translateY(0); }
.size-modal h4 { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--navy); margin-bottom: 6px; }
.size-modal p { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.size-options { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-bottom: 20px; }
.size-opt { padding: 14px; border: 1.5px solid var(--teal-light); background: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 16px; font-weight: 600; color: var(--navy); cursor: pointer; transition: all 0.2s; border-radius: 2px; }
.size-opt:hover { border-color: var(--teal); background: var(--teal-pale); }
.size-opt.selected { background: var(--teal); color: white; border-color: var(--teal); }
.size-confirm { width: 100%; padding: 14px; background: var(--copper); color: white; border: none; font-family: 'Rajdhani', sans-serif; font-size: 13px; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; cursor: pointer; border-radius: 2px; }
.size-confirm:hover { background: var(--copper-dark); }
.size-confirm:disabled { background: var(--text-muted); cursor: not-allowed; }
.size-cancel { background: none; border: none; color: var(--text-muted); font-size: 13px; cursor: pointer; margin-top: 12px; }

/* HERO */
.hero { position: relative; overflow: hidden; min-height: 92vh; display: flex; align-items: center; }
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: 1; transition: opacity 0.5s ease, transform 0.5s ease; will-change: transform, opacity; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(245,243,238,0.95) 0%, rgba(245,243,238,0.85) 40%, rgba(245,243,238,0.4) 70%, rgba(245,243,238,0.1) 100%); z-index: 2; }
.hero-bg-pattern { display: none; }
.hero-inner { max-width: 1200px; margin: 0 auto; padding: 80px 40px; z-index: 3; position: relative; width: 100%; }
.hero-visual { display: none; }
.hero-text { max-width: 560px; animation: heroEntryR 1s ease-out 0.2s both; }
.hero-eyebrow { font-size: 13px; letter-spacing: 5px; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; font-weight: 700; }
.hero-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(42px, 5vw, 72px); font-weight: 700; color: var(--navy); line-height: 1.1; margin-bottom: 8px; }
.hero-title em { font-style: italic; color: var(--teal); display: block; font-size: 0.75em; font-weight: 400; margin-top: 4px; }
.hero-divider { width: 80px; height: 2px; background: linear-gradient(90deg, var(--copper), var(--copper-light)); margin: 28px 0; position: relative; }
.hero-divider::after { content: ''; position: absolute; right: 0; top: -3px; width: 8px; height: 8px; border-radius: 50%; background: var(--copper-light); }
.hero-subtitle { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--navy); max-width: 440px; line-height: 1.7; margin-bottom: 36px; font-weight: 600; padding-left: 20px; border-left: 3px solid var(--copper); font-style: italic; }
.hero-subtitle strong { color: var(--teal); font-weight: 700; font-style: normal; }
.hero-cta { display: inline-block; padding: 16px 44px; background: var(--teal); color: white; text-decoration: none; font-size: 13px; letter-spacing: 4px; text-transform: uppercase; font-weight: 700; border: none; transition: all 0.4s; }
.hero-cta:hover { background: var(--navy); box-shadow: 0 8px 30px rgba(30,45,80,0.2); transform: translateY(-2px); }
.hero-badge { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; background: rgba(184,134,11,0.15); border: 1.5px solid rgba(184,134,11,0.4); border-radius: 20px; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: #6B5504; font-weight: 700; margin-bottom: 20px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); }
.hero-stats { display: flex; gap: 20px; margin-top: 28px; flex-wrap: wrap; }
.hero-stat-num { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--navy); display: block; line-height: 1; }
.hero-stat-label { font-size: 10px; color: #4A5568; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 4px; font-weight: 600; }
@keyframes heroEntry { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes heroEntryR { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }

/* SECTIONS */
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { font-size: 12px; letter-spacing: 6px; text-transform: uppercase; color: var(--copper); margin-bottom: 12px; font-weight: 500; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(32px, 4vw, 52px); color: var(--navy); font-weight: 700; margin-bottom: 16px; }
.section-ornament { display: flex; align-items: center; justify-content: center; gap: 16px; color: var(--teal); font-size: 10px; }
.section-ornament::before, .section-ornament::after { content: ''; width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--copper), transparent); }

/* CATEGORIES */
.categories-section { padding: 100px 40px; max-width: 1300px; margin: 0 auto; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat-card { position: relative; height: 340px; overflow: hidden; cursor: pointer; border-radius: 6px; transition: all 0.5s; contain: content; transform: translateZ(0); }
.cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(30,45,80,0.15); }
.cat-card-bg { width: 100%; height: 100%; position: relative; transition: transform 0.6s; }
.cat-card:hover .cat-card-bg { transform: scale(1.05); }
.cat-card-bg img { width: 100%; height: 100%; object-fit: cover; }
.cat-aesthetic .cat-card-bg img { object-position: center 60%; }
.cat-shimmer { position: absolute; top: -50%; left: -100%; width: 200%; height: 200%; background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%); transform: rotate(25deg); transition: left 0.6s; pointer-events: none; }
.cat-card:hover .cat-shimmer { left: 100%; }
.cat-card-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 28px; background: linear-gradient(transparent, rgba(30,45,80,0.7)); color: white; text-align: center; }
.cat-card-content h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 600; margin-bottom: 4px; }
.cat-card-content p { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }

/* FILTER TABS */
.filter-tabs { display: flex; justify-content: center; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-tab { padding: 10px 24px; border: 1.5px solid var(--teal-light); background: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; color: var(--navy); cursor: pointer; transition: all 0.3s; border-radius: 2px; }
.filter-tab:hover { border-color: var(--teal); background: var(--teal-pale); }
.filter-tab.active { background: var(--teal); color: white; border-color: var(--teal); }

/* PRODUCTS */
.featured { padding: 100px 40px; background: radial-gradient(ellipse at 50% 0%, rgba(42,139,122,0.05) 0%, transparent 50%), var(--bg-warm); }
.featured-inner { max-width: 1300px; margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.product-card { background: var(--white); border: 1px solid rgba(42,139,122,0.1); transition: all 0.4s; position: relative; overflow: hidden; border-radius: 4px; contain: content; transform: translateZ(0); }
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(30,45,80,0.1); border-color: var(--teal); }
.product-card.hidden { display: none; }
.product-badge { position: absolute; top: 16px; left: 16px; background: var(--navy); color: var(--copper-light); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; padding: 6px 14px; font-weight: 600; z-index: 2; border-radius: 2px; }
.product-image { width: 100%; height: 260px; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.product-image-inner { display: flex; align-items: center; justify-content: center; gap: 4px; transition: transform 0.5s; }
.product-card:hover .product-image-inner { transform: scale(1.06); }
.product-photo { width: 100%; height: 100%; object-fit: cover; border-radius: 4px 4px 0 0; transition: opacity 0.6s ease, transform 0.6s ease; position: absolute; top: 0; left: 0; opacity: 0; }
.product-photo.active { opacity: 1; }
.product-photo.loaded { opacity: 1; }
.product-card:hover .product-photo { transform: scale(1.06); }
.img-skeleton { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(90deg, #f0ede6 25%, #e8e4db 50%, #f0ede6 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; }
@keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }
.slide-dots { position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 2; }
.slide-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.5); border: 1px solid rgba(42,139,122,0.4); cursor: pointer; transition: all 0.3s; }
.slide-dot.active { background: var(--teal); border-color: white; }
.glass-ring { border-radius: 50%; position: relative; }
.glass-ring::after { content: ''; position: absolute; top: 4px; left: 20%; width: 30%; height: 18%; background: rgba(255,255,255,0.3); border-radius: 50%; filter: blur(2px); }
.product-info { padding: 22px; text-align: center; }
.product-name { font-family: 'Cormorant Garamond', serif; font-size: 20px; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.product-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 4px; }
.product-set-tag { display: inline-block; font-size: 11px; background: var(--teal-pale); color: var(--teal-dark); padding: 19px 19px; border-radius: 2px; letter-spacing: 1px; font-weight: 600; margin-bottom: 12px; vertical-align: top; }
.variant-selector { display: flex; gap: 8px; margin-bottom: 12px; }
.variant-btn { flex: 1; padding: 8px 6px; border: 1.5px solid rgba(42,139,122,0.25); background: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 12px; color: var(--text-muted); cursor: pointer; border-radius: 3px; text-align: center; transition: all 0.3s; font-weight: 600; }
.variant-btn.active { border-color: var(--teal); background: var(--teal-pale); color: var(--teal-dark); }
.variant-btn:hover { border-color: var(--teal); }
.variant-btn .vp { display: block; font-size: 14px; font-weight: 700; color: var(--navy); margin-top: 2px; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--copper-dark); font-weight: 700; margin-bottom: 14px; }
.add-to-cart { width: 100%; padding: 12px; background: transparent; border: 1.5px solid var(--teal); color: var(--navy); font-family: 'Rajdhani', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; cursor: pointer; transition: all 0.3s; border-radius: 2px; }
.add-to-cart:hover { background: var(--teal); border-color: var(--teal); color: white; }

/* PROCESS */
.process-section { padding: 100px 40px; max-width: 1100px; margin: 0 auto; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 48px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, transparent, var(--copper), var(--copper), transparent); opacity: 0.3; }
.step { text-align: center; position: relative; }
.step-num { width: 56px; height: 56px; border-radius: 50%; border: 2px solid var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; color: var(--navy); background: var(--bg); position: relative; z-index: 2; }
.step h4 { font-family: 'Cormorant Garamond', serif; font-size: 20px; color: var(--navy); margin-bottom: 8px; }
.step p { font-size: 13px; color: var(--text-muted); line-height: 1.7; }

/* SIZE GUIDE */
.size-guide { padding: 100px 40px; max-width: 900px; margin: 0 auto; }
.size-table-wrap { border: 1px solid rgba(42,139,122,0.2); overflow: hidden; border-radius: 4px; }
.size-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.size-table thead { background: var(--navy); color: var(--copper-light); }
.size-table th { padding: 16px 24px; letter-spacing: 3px; text-transform: uppercase; font-size: 11px; font-weight: 600; text-align: left; }
.size-table td { padding: 14px 24px; border-bottom: 1px solid rgba(42,139,122,0.1); }
.size-table tbody tr:nth-child(even) { background: rgba(42,139,122,0.03); }

/* HERITAGE */
.heritage { padding: 120px 40px; background: var(--navy-deep); position: relative; overflow: hidden; text-align: center; }
.heritage-pattern { position: absolute; inset: 0; opacity: 0.04; background-image: radial-gradient(circle at 25% 25%, var(--teal) 1px, transparent 1px), radial-gradient(circle at 75% 75%, var(--copper) 1px, transparent 1px); background-size: 40px 40px; }
.heritage h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(36px, 5vw, 64px); color: var(--copper-light); font-weight: 700; margin-bottom: 24px; position: relative; }
.heritage p { font-size: 16px; color: var(--teal-light); max-width: 620px; margin: 0 auto 40px; line-height: 1.8; opacity: 0.8; position: relative; }
.heritage-stats { display: flex; justify-content: center; gap: 80px; position: relative; }
.stat { text-align: center; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 48px; color: var(--copper-light); font-weight: 700; display: block; }
.stat-label { font-size: 11px; color: var(--teal-light); letter-spacing: 4px; text-transform: uppercase; opacity: 0.5; }
.trust-badges { display: flex; justify-content: center; align-items: center; gap: 0; margin-top: 50px; padding-top: 40px; border-top: 1px solid rgba(218,165,32,0.15); flex-wrap: wrap; }
.trust-badge { display: flex; align-items: center; gap: 10px; padding: 0 28px; }
.trust-icon { width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-text { font-size: 13px; color: rgba(255,255,255,0.85); letter-spacing: 1px; font-weight: 500; }
.trust-divider { width: 1px; height: 28px; background: rgba(218,165,32,0.2); }

/* TESTIMONIALS */
.testimonials { padding: 100px 40px; background: var(--bg-warm); }
.testimonials-inner { max-width: 1300px; margin: 0 auto; }
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.test-card { padding: 40px; border: 1px solid rgba(42,139,122,0.15); background: var(--white); border-radius: 4px; contain: content; }
.test-quote { font-family: 'Cormorant Garamond', serif; font-size: 60px; color: var(--teal); line-height: 1; margin-bottom: 8px; opacity: 0.3; }
.test-text { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.test-author { font-weight: 600; color: var(--navy); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
.test-stars { color: var(--copper); font-size: 14px; letter-spacing: 2px; margin-top: 8px; }

/* NEWSLETTER */
.newsletter { padding: 80px 40px; text-align: center; background: var(--bg); }
.newsletter-inner { max-width: 600px; margin: 0 auto; }
.newsletter h3 { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--navy); margin-bottom: 12px; }
.newsletter p { font-size: 14px; color: var(--text-muted); margin-bottom: 30px; }
.newsletter-form { display: flex; max-width: 480px; margin: 0 auto; }
.newsletter-form input { flex: 1; padding: 16px 20px; border: 1.5px solid var(--teal); border-right: none; background: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 14px; color: var(--text-dark); outline: none; border-radius: 2px 0 0 2px; }
.newsletter-form button { padding: 16px 32px; background: var(--teal); color: white; border: 1.5px solid var(--teal); font-family: 'Rajdhani', sans-serif; font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; cursor: pointer; border-radius: 0 2px 2px 0; }

/* FOOTER */
footer { background: var(--navy-deep); padding: 80px 40px 30px; color: var(--teal-light); }
.footer-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo-icon { height: 45px; }
.footer-logo-text { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 600; color: var(--copper-light); letter-spacing: 2px; }
.footer-brand p { font-size: 14px; line-height: 1.8; opacity: 0.4; max-width: 300px; }
.footer-col h4 { font-size: 12px; letter-spacing: 4px; text-transform: uppercase; color: var(--copper); margin-bottom: 24px; font-weight: 600; }
.footer-col a { display: block; text-decoration: none; color: var(--teal-light); opacity: 0.4; font-size: 14px; margin-bottom: 12px; transition: all 0.3s; }
.footer-col a:hover { opacity: 1; color: var(--copper-light); padding-left: 4px; }
.footer-bottom { max-width: 1300px; margin: 0 auto; border-top: 1px solid rgba(42,139,122,0.15); padding-top: 24px; display: flex; justify-content: space-between; font-size: 12px; opacity: 0.5; letter-spacing: 2px; }

/* ANIMATIONS */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* CHECKOUT FORM */
.checkout-form { margin-bottom: 14px; }
.checkout-form h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.form-row { margin-bottom: 10px; }
.form-row input { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(42,139,122,0.25); background: var(--white); font-family: 'Rajdhani', sans-serif; font-size: 14px; color: var(--text-dark); outline: none; border-radius: 3px; transition: border 0.3s; }
.form-row input:focus { border-color: var(--teal); }
.form-row input::placeholder { color: var(--text-muted); font-size: 13px; }
.form-row-half { display: flex; gap: 10px; }
.form-row-half .form-row { flex: 1; }
.form-error { font-size: 11px; color: var(--danger); margin-top: 4px; display: none; }
.form-error.show { display: block; }

/* ORDER CONFIRMATION */
.order-confirm-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 400; opacity: 0; visibility: hidden; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.order-confirm-overlay.open { opacity: 1; visibility: visible; }
.order-confirm { background: var(--white); padding: 36px; max-width: 420px; width: 90%; border-radius: 6px; text-align: center; transform: translateY(20px); transition: transform 0.3s; }
.order-confirm-overlay.open .order-confirm { transform: translateY(0); }
.order-tick { width: 60px; height: 60px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; color: white; font-size: 28px; }
.order-confirm h3 { font-family: 'Cormorant Garamond', serif; font-size: 26px; color: var(--navy); margin-bottom: 6px; }
.order-confirm .order-id { font-size: 13px; color: var(--teal); font-weight: 600; letter-spacing: 1px; margin-bottom: 16px; }
.order-summary { text-align: left; padding: 14px; background: var(--bg); border-radius: 4px; margin-bottom: 16px; font-size: 13px; }
.order-summary .os-row { display: flex; justify-content: space-between; padding: 4px 0; color: var(--text-muted); }
.order-summary .os-row.total { border-top: 1px solid rgba(42,139,122,0.15); padding-top: 8px; margin-top: 6px; color: var(--navy); font-weight: 700; font-size: 15px; }
.order-confirm .msg { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }
.order-done-btn { padding: 14px 40px; background: var(--teal); color: white; border: none; font-family: 'Rajdhani', sans-serif; font-size: 14px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; cursor: pointer; border-radius: 3px; }
.order-done-btn:hover { background: var(--navy); }

/* MOBILE MENU */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--teal-light); margin: 5px 0; transition: all 0.3s; border-radius: 1px; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }
.mobile-menu { position: fixed; top: 0; left: -100%; width: 280px; height: 100vh; background: var(--navy-deep); z-index: 150; transition: left 0.4s cubic-bezier(0.16,1,0.3,1); padding: 80px 30px 30px; }
.mobile-menu.open { left: 0; }
.mobile-menu a { display: block; color: var(--teal-light); font-size: 16px; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; padding: 16px 0; border-bottom: 0.5px solid rgba(168,216,208,0.15); transition: color 0.3s; }
.mobile-menu a:hover { color: var(--copper-light); }
.mobile-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 149; opacity: 0; visibility: hidden; transition: all 0.3s; }
.mobile-overlay.open { opacity: 1; visibility: visible; }

/* POLICY MODAL */
.policy-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 400; opacity: 0; visibility: hidden; transition: all 0.3s; display: flex; align-items: center; justify-content: center; }
.policy-overlay.open { opacity: 1; visibility: visible; }
.policy-modal { background: var(--white); max-width: 600px; width: 92%; max-height: 85vh; overflow-y: auto; border-radius: 6px; transform: translateY(20px); transition: transform 0.3s; contain: content; }
.policy-overlay.open .policy-modal { transform: translateY(0); }
.policy-header { padding: 24px 28px 16px; border-bottom: 1px solid rgba(42,139,122,0.15); display: flex; justify-content: space-between; align-items: center; position: sticky; top: 0; background: var(--white); z-index: 2; border-radius: 6px 6px 0 0; }
.policy-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 24px; color: var(--navy); font-weight: 700; }
.policy-close { background: none; border: none; font-size: 26px; color: var(--text-muted); cursor: pointer; }
.policy-body { padding: 20px 28px 28px; }
.pol-section { margin-bottom: 20px; padding: 16px; background: var(--bg); border-radius: 4px; border-left: 3px solid var(--teal); }
.pol-section.warn { border-left-color: var(--copper); }
.pol-section.strict { border-left-color: #D32F2F; }
.pol-section h4 { font-family: 'Cormorant Garamond', serif; font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.pol-section p { font-size: 13px; color: var(--text-muted); line-height: 1.8; margin: 0; }
.pol-section p strong { color: var(--navy); }
.pol-highlight { background: rgba(42,139,122,0.08); padding: 12px 16px; border-radius: 4px; margin-top: 16px; font-size: 13px; color: var(--teal-dark); line-height: 1.7; text-align: center; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-inner { padding: 10px 16px; }
  .logo-brand { font-size: 20px; }
  nav { display: none; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .cat-card { height: 240px; }
  .products-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .heritage-stats { flex-direction: column; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form input { border-right: 1.5px solid var(--teal); border-radius: 2px; }
  .newsletter-form button { border-radius: 2px; }
  .hero-inner { padding: 50px 20px; }
  .hero-text { max-width: 100%; text-align: left; }
  .hero-title { font-size: 36px; }
  .hero-title em { font-size: 0.75em; }
  .hero-subtitle { font-size: 15px; line-height: 1.6; margin-bottom: 24px; max-width: 100%; padding-left: 16px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 3px; margin-bottom: 14px; }
  .hero-cta { padding: 14px 32px; font-size: 12px; letter-spacing: 3px; }
  .hero-divider { margin: 16px 0; width: 60px; }
  .hero-badge { font-size: 10px; padding: 6px 12px; margin-bottom: 12px; letter-spacing: 1.5px; }
  .hero-stats { gap: 16px; margin-top: 20px; }
  .hero-stat-num { font-size: 18px; }
  .hero-stat-label { font-size: 9px; letter-spacing: 1px; }
  .hero { min-height: 85vh; }
  .hero-overlay { background: linear-gradient(to bottom, rgba(245,243,238,0.92) 0%, rgba(245,243,238,0.8) 50%, rgba(245,243,238,0.6) 100%) !important; }
  .filter-tabs { gap: 8px; }
  .filter-tab { padding: 8px 16px; font-size: 11px; }
  .trust-badges { flex-direction: column; gap: 16px; margin-top: 30px; padding-top: 30px; }
  .trust-divider { display: none; }
  .trust-badge { padding: 0; justify-content: center; }
  .categories-section { padding: 50px 20px; }
}
