:root {
  --gold: #c9956c;
  --gold-light: #e4bca2;
  --gold-dark: #a87249;
  --bg-dark: #0b0b0b;
  --bg-card: rgba(255, 255, 255, 0.03);
  --text-main: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.6);
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Inter', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: var(--font-sans);
  overflow-x: hidden;
  line-height: 1.5;
}

a { text-decoration: none; color: inherit; }

/* Promo Banner */
.promo-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 36px;
  background: linear-gradient(90deg, #0b0b0b 0%, #1a0e08 50%, #0b0b0b 100%);
  border-bottom: 1px solid rgba(201,149,108,0.2);
  z-index: 100;
  overflow: hidden;
}
.promo-scroll {
  display: flex; align-items: center; height: 100%; white-space: nowrap;
  animation: promoscroll 55s linear infinite;
}
.promo-text {
  color: rgba(201,149,108,0.85); font-size: 10px; letter-spacing: 0.25em; font-weight: 300;
}
@keyframes promoscroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Navbar */
.navbar-main {
  position: fixed;
  top: 36px; left: 0; right: 0;
  z-index: 90;
  transition: all 0.5s ease;
  padding: 24px 0;
}
.navbar-main.scrolled, .navbar-scrolled {
  background: rgba(5,5,5,0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 16px 0;
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 48px; display: flex; align-items: center; justify-content: space-between;
}
.nav-mobile-btn { display: none; background: none; border: none; color: var(--text-main); font-size: 24px; cursor: pointer; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-size: 14px; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(255,255,255,0.7); font-weight: 300; transition: color 0.3s; }
.nav-links a:hover, .nav-links a.active { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 2px; }
.nav-brand { position: absolute; left: 50%; transform: translateX(-50%); font-family: var(--font-serif); font-size: 30px; letter-spacing: 0.3em; font-weight: 400; }
.nav-right-group { display: flex; align-items: center; gap: 32px; }
.nav-cart-btn { background: none; border: none; color: rgba(255,255,255,0.8); cursor: pointer; position: relative; transition: transform 0.3s; }
.nav-cart-btn:hover { color: #fff; transform: scale(1.1); }
.nav-cart-btn i { font-size: 24px; }
.cart-badge { position: absolute; top: -8px; right: -8px; background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: #000; font-size: 10px; font-weight: 700; width: 20px; height: 20px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }

/* Mobile Menu */
.mobile-menu { position: fixed; inset: 0; background: rgba(0,0,0,0.95); backdrop-filter: blur(20px); z-index: 150; display: flex; flex-direction: column; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.mobile-menu.active { opacity: 1; pointer-events: auto; }
.mobile-menu-close { position: absolute; top: 24px; right: 24px; background: none; border: none; color: var(--text-main); font-size: 32px; cursor: pointer; }
.mobile-nav { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.mobile-nav a { font-family: var(--font-serif); font-size: 30px; letter-spacing: 0.2em; text-transform: uppercase; transition: color 0.3s; }
.mobile-nav a:hover { color: var(--gold); }

@media (max-width: 768px) {
  .nav-container { padding: 0 24px; }
  .nav-mobile-btn { display: block; }
  .nav-left, .nav-right-links { display: none; }
}

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.6); z-index: 1; }
.hero-gradient { position: absolute; inset: 0; background: linear-gradient(to top, #000, transparent, rgba(0,0,0,0.3)); z-index: 1; }
.hero-image { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: kenburns 20s ease-out infinite alternate; }
.hero-particles { position: absolute; inset: 0; z-index: 5; opacity: 0.3; background: url('https://www.transparenttextures.com/patterns/stardust.png'); mix-blend-mode: overlay; pointer-events: none; }
.hero-content { position: relative; z-index: 10; text-align: center; max-width: 1000px; padding: 0 24px; margin-top: 80px; }
.hero-title-words { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 24px; margin-bottom: 24px; }
.hero-word { font-family: var(--font-serif); font-size: 96px; letter-spacing: 0.1em; font-weight: 400; line-height: 1; }
.hero-word-gold { color: var(--gold); font-style: italic; background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { color: rgba(255,255,255,0.6); font-size: 18px; font-weight: 300; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 16px; }
.hero-desc { color: rgba(255,255,255,0.45); font-size: 16px; font-weight: 300; letter-spacing: 0.05em; max-width: 600px; margin: 0 auto 48px; }
.hero-ctas { display: flex; justify-content: center; gap: 24px; }

@media (max-width: 768px) {
  .hero-word { font-size: 48px; }
  .hero-subtitle { font-size: 14px; }
  .hero-desc { font-size: 14px; }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 300px; margin: 0 auto; }
}

.btn-primary-gold { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: #000; padding: 16px 40px; font-size: 14px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: none; cursor: pointer; transition: all 0.3s; display: inline-block; text-align: center; }
.btn-primary-gold:hover { transform: scale(1.05); box-shadow: 0 0 20px rgba(201,149,108,0.4); color: #000; }
.btn-outline-white { border: 1px solid rgba(255,255,255,0.3); color: #fff; padding: 16px 40px; font-size: 14px; font-weight: 300; letter-spacing: 0.2em; text-transform: uppercase; background: transparent; cursor: pointer; transition: all 0.3s; display: inline-block; text-align: center; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }

.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.scroll-indicator span { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent); animation: scrollBounce 2s infinite ease-in-out; }

@keyframes kenburns { 0% { transform: scale(1.05); } 100% { transform: scale(1.15); } }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(10px); } }

/* Trust Pillars */
.trust-pillars { position: relative; padding: 96px 0; overflow: hidden; }
.trust-top-line { position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 64px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.15)); }
.trust-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(circle at 30% 50%, rgba(201,149,108,0.04) 0%, transparent 40%), radial-gradient(circle at 70% 50%, rgba(248,200,220,0.03) 0%, transparent 40%); }
.trust-container { max-width: 1000px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.trust-label { text-align: center; margin-bottom: 64px; }
.trust-label span { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,149,108,0.7); }
.trust-label-line { margin: 16px auto 0; width: 32px; height: 1px; background: linear-gradient(to right, transparent, rgba(201,149,108,0.5), transparent); }
.pillars-grid { display: flex; justify-content: space-between; }
.pillar-card { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 32px; }
.pillar-icon { width: 64px; height: 64px; border-radius: 50%; border: 1px solid rgba(201,149,108,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 32px; position: relative; transition: all 0.5s; }
.pillar-icon i { font-size: 24px; color: var(--gold); transition: transform 0.5s; }
.pillar-card:hover .pillar-icon { box-shadow: 0 0 30px rgba(201,149,108,0.15); }
.pillar-card:hover .pillar-icon i { transform: scale(1.1); }
.pillar-card h3 { font-family: var(--font-serif); font-size: 20px; letter-spacing: 0.15em; color: rgba(255,255,255,0.9); margin-bottom: 16px; font-weight: 400; }
.pillar-card p { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.6; }
.pillar-divider { width: 1px; background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.1), transparent); }
.trust-closing { text-align: center; margin-top: 64px; font-family: var(--font-serif); font-size: 24px; font-style: italic; color: var(--gold); background: linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.trust-bottom-line { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 1px; height: 64px; background: linear-gradient(to top, transparent, rgba(255,255,255,0.15)); }

@media (max-width: 768px) {
  .pillars-grid { flex-direction: column; gap: 48px; }
  .pillar-divider { display: none; }
}

/* Sections */
.section-header { text-align: center; margin-bottom: 80px; }
.section-tag { color: var(--gold); font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 16px; display: block; }
.section-title { font-family: var(--font-serif); font-size: 48px; letter-spacing: 0.1em; font-style: italic; font-weight: 400; }
.text-gold-gradient { background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.section-featured { padding: 128px 24px; max-width: 1280px; margin: 0 auto; }
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.products-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .products-grid, .products-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .products-grid, .products-grid-4 { grid-template-columns: 1fr; }
}

/* Product Card */
.product-card { position: relative; perspective: 1000px; cursor: pointer; }
.product-card-inner { background: var(--bg-card); border: 1px solid transparent; padding: 24px; display: flex; flex-direction: column; align-items: center; text-align: center; height: 100%; transition: all 0.5s; position: relative; }
.product-card:hover .product-card-inner { border-color: rgba(201,149,108,0.3); background: rgba(201,149,108,0.03); box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5); }
.product-glow { position: absolute; top: 30%; left: 50%; transform: translate(-50%, -50%); width: 120px; height: 120px; background: rgba(201,149,108,0.15); filter: blur(50px); border-radius: 50%; opacity: 0; transition: opacity 0.7s; pointer-events: none; }
.product-card:hover .product-glow { opacity: 1; }
.product-image-wrap { width: 192px; height: 192px; margin-bottom: 32px; position: relative; z-index: 10; overflow: hidden; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.5)); mix-blend-mode: screen; transition: transform 0.6s ease-out; }
.product-card:hover .product-image-wrap img { transform: scale(1.1); }
.product-stars { color: rgba(201,149,108,0.8); font-size: 12px; margin-bottom: 12px; display: flex; gap: 4px; }
.product-name { font-family: var(--font-serif); font-size: 24px; letter-spacing: 0.05em; font-weight: 400; margin-bottom: 8px; }
.product-price { color: var(--gold); font-size: 16px; font-weight: 500; letter-spacing: 0.1em; margin-bottom: 24px; }
.product-actions { margin-top: auto; width: 100%; display: flex; flex-direction: column; gap: 8px; }
.btn-view { display: block; width: 100%; padding: 10px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(201,149,108,0.6); color: var(--gold); text-align: center; transition: all 0.3s; }
.btn-view:hover { background: var(--gold); color: #000; }
.btn-add-cart { display: block; width: 100%; padding: 10px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.7); background: transparent; cursor: pointer; transition: all 0.3s; }
.btn-add-cart:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.btn-add-cart.added { background: var(--gold); border-color: var(--gold); color: #000; }

/* Categories */
.section-categories { padding: 96px 0; }
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); height: 70vh; }
@media (max-width: 1024px) { .categories-grid { grid-template-columns: repeat(2, 1fr); height: auto; } }
@media (max-width: 640px) { .categories-grid { grid-template-columns: 1fr; } }
.category-card { position: relative; height: 100%; min-height: 400px; overflow: hidden; display: block; }
.cat-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.4); z-index: 10; transition: background 0.7s; }
.category-card:hover .cat-overlay { background: rgba(0,0,0,0.2); }
.cat-gradient { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2), transparent); z-index: 10; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); transition: transform 2s ease-out; }
.category-card:hover img { transform: scale(1.1); }
.cat-content { position: absolute; bottom: 48px; left: 0; width: 100%; text-align: center; z-index: 20; padding: 24px; transform: translateY(16px); transition: transform 0.5s; }
.category-card:hover .cat-content { transform: translateY(0); }
.cat-content h3 { font-family: var(--font-serif); font-size: 36px; letter-spacing: 0.2em; color: #fff; margin-bottom: 16px; font-weight: 400; }
.cat-explore { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity 0.5s 0.1s; }
.category-card:hover .cat-explore { opacity: 1; }

/* Bestsellers */
.section-bestsellers { padding: 96px 0; background: rgba(0,0,0,0.5); border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); overflow: hidden; position: relative; }
.bestseller-header { text-align: center; margin-bottom: 64px; }
.bestseller-header h2 { font-family: var(--font-serif); font-size: 36px; letter-spacing: 0.1em; font-style: italic; }
.bestseller-track-wrapper { position: relative; width: 100%; overflow: hidden; }
.bestseller-fade-left, .bestseller-fade-right { position: absolute; top: 0; bottom: 0; width: 128px; z-index: 10; pointer-events: none; }
.bestseller-fade-left { left: 0; background: linear-gradient(to right, var(--bg-dark), transparent); }
.bestseller-fade-right { right: 0; background: linear-gradient(to left, var(--bg-dark), transparent); }
.bestseller-track { display: flex; gap: 48px; padding: 0 24px; width: max-content; animation: scrollTrack 25s linear infinite; }
.bestseller-track:hover { animation-play-state: paused; }
.bestseller-item { width: 256px; flex-shrink: 0; cursor: pointer; text-align: center; }
.bestseller-img-wrap { width: 100%; height: 256px; background: var(--bg-card); padding: 24px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; overflow: hidden; }
.bestseller-img-wrap img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3)); mix-blend-mode: screen; transition: transform 0.7s; }
.bestseller-item:hover img { transform: scale(1.1); }
.bestseller-item h3 { font-family: var(--font-serif); font-size: 20px; letter-spacing: 0.1em; margin-bottom: 8px; font-weight: 400; transition: color 0.3s; }
.bestseller-item:hover h3 { color: var(--gold); }
.bestseller-item p { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; letter-spacing: 0.1em; }
@keyframes scrollTrack { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Testimonials */
.section-testimonials { padding: 128px 24px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 10; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }
.testimonial-card { padding: 40px; display: flex; flex-direction: column; align-items: center; text-align: center; background: rgba(255,255,255,0.02); transition: background 0.3s; }
.testimonial-card:hover { background: rgba(255,255,255,0.05); }
.testimonial-avatar { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-light)); display: flex; align-items: center; justify-content: center; color: #000; font-family: var(--font-serif); font-size: 24px; margin-bottom: 24px; box-shadow: 0 0 20px rgba(201,149,108,0.3); }
.testimonial-stars { color: var(--gold); font-size: 16px; margin-bottom: 24px; display: flex; gap: 4px; }
.testimonial-quote { color: rgba(255,255,255,0.7); font-style: italic; font-weight: 300; font-size: 18px; line-height: 1.6; margin-bottom: 32px; }
.testimonial-name { color: #fff; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; font-weight: 500; margin-top: auto; }

/* Newsletter */
.section-newsletter { padding: 128px 24px; position: relative; text-align: center; }
.newsletter-bg { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(201,149,108,0.1) 0%, transparent 70%); z-index: 0; }
.newsletter-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; }
.newsletter-title { font-family: var(--font-serif); font-size: 60px; letter-spacing: 0.1em; color: var(--gold); font-style: italic; margin-bottom: 24px; font-weight: 400; }
@media (max-width: 768px) { .newsletter-title { font-size: 36px; } }
.newsletter-desc { color: rgba(255,255,255,0.6); font-weight: 300; letter-spacing: 0.1em; margin-bottom: 48px; max-width: 600px; margin-left: auto; margin-right: auto; }
.newsletter-form { display: flex; max-width: 500px; margin: 0 auto; }
@media (max-width: 640px) { .newsletter-form { flex-direction: column; gap: 16px; } }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); padding: 16px 24px; color: #fff; font-family: var(--font-sans); font-size: 14px; letter-spacing: 0.1em; outline: none; transition: border-color 0.3s; }
.newsletter-form input:focus { border-color: rgba(201,149,108,0.5); }
.newsletter-form button { background: var(--gold); color: #000; font-size: 14px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; border: none; padding: 16px 40px; cursor: pointer; transition: all 0.3s; }
.newsletter-form button:hover { background: var(--gold-light); box-shadow: 0 0 15px rgba(201,149,108,0.4); }

/* Payment Strip */
.payment-strip { padding: 48px 24px; border-top: 1px solid rgba(255,255,255,0.05); text-align: center; }
.payment-label { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px; }
.payment-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-bottom: 24px; }
.pay-logo { background: #fff; color: #000; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 4px; display: inline-flex; align-items: center; justify-content: center; height: 28px; }
.payment-note { font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.2); text-transform: uppercase; }

/* Footer */
.site-footer { background: #050505; padding-top: 96px; border-top: 1px solid rgba(255,255,255,0.05); }
.footer-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 48px; margin-bottom: 64px; }
@media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand { font-family: var(--font-serif); font-size: 36px; letter-spacing: 0.3em; color: var(--gold); display: block; margin-bottom: 24px; font-weight: 400; }
.footer-desc { color: rgba(255,255,255,0.4); font-size: 14px; font-weight: 300; letter-spacing: 0.1em; line-height: 1.6; margin-bottom: 24px; max-width: 300px; }
.footer-trust-badges p { font-size: 10px; color: rgba(255,255,255,0.3); letter-spacing: 0.15em; margin-bottom: 8px; }
.footer-links-col h4 { color: #fff; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; margin-bottom: 24px; font-weight: 400; }
.footer-links-col ul { list-style: none; }
.footer-links-col ul li { margin-bottom: 16px; }
.footer-links-col ul li a { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 300; letter-spacing: 0.1em; transition: color 0.3s; }
.footer-links-col ul li a:hover { color: var(--gold); }
.pay-section-title { font-size: 9px; letter-spacing: 0.2em; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 12px; }
.footer-pay-logos { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.footer-pay-logos span { background: #fff; color: #000; font-size: 10px; font-weight: 600; padding: 2px 8px; border-radius: 2px; }
.footer-security-note { color: rgba(255,255,255,0.25); font-size: 10px; font-weight: 300; line-height: 1.6; letter-spacing: 0.05em; margin-bottom: 24px; }
.footer-legal a { display: block; color: rgba(255,255,255,0.3); font-size: 12px; font-weight: 300; letter-spacing: 0.1em; margin-bottom: 8px; transition: color 0.3s; }
.footer-legal a:hover { color: rgba(255,255,255,0.6); }
.footer-bottom { padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; }
@media (max-width: 640px) { .footer-bottom { flex-direction: column; gap: 16px; text-align: center; } }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-socials { display: flex; gap: 24px; }
.footer-socials a { color: rgba(255,255,255,0.3); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.3s; }
.footer-socials a:hover { color: var(--gold); }

/* Utility */
.glass-card { background: var(--bg-card); border: 1px solid rgba(255,255,255,0.05); }

/* Collection Page specific */
.collection-hero { position: relative; padding: 196px 24px 96px; text-align: center; overflow: hidden; }
.collection-hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse 60% 40% at 50% 0%, rgba(201,149,108,0.07) 0%, transparent 70%); }
.collection-hero-line { position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(201,149,108,0.3), transparent); }
.collection-hero-content { position: relative; z-index: 10; max-width: 800px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; transition: color 0.3s; margin-bottom: 48px; background: none; border: none; cursor: pointer; }
.back-link:hover { color: rgba(255,255,255,0.8); }
.collection-subtitle { display: block; font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,149,108,0.7); margin-bottom: 24px; }
.collection-title { font-family: var(--font-serif); font-size: 72px; letter-spacing: 0.08em; font-style: italic; font-weight: 400; margin-bottom: 24px; }
@media (max-width: 768px) { .collection-title { font-size: 48px; } }
.collection-tagline { color: rgba(255,255,255,0.45); font-weight: 300; letter-spacing: 0.05em; line-height: 1.6; }
.collection-line { margin: 40px auto 0; width: 200px; height: 1px; background: linear-gradient(to right, transparent, rgba(201,149,108,0.5), transparent); }
.collection-products { padding: 0 24px 96px; max-width: 1280px; margin: 0 auto; }
.no-products { grid-column: 1 / -1; text-align: center; padding: 64px 0; color: rgba(255,255,255,0.5); }
.no-products p { margin-bottom: 24px; }

/* Product Detail Page */
.product-detail-section { padding: 196px 24px 96px; }
.product-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
@media (max-width: 1024px) { .product-detail-grid { grid-template-columns: 1fr; gap: 48px; } }
.back-link-wrapper { margin-bottom: 40px; }
.product-image-col { position: relative; padding: 48px; min-height: 420px; display: flex; align-items: center; justify-content: center; border-radius: 16px; overflow: hidden; }
.product-image-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201,149,108,0.12) 0%, transparent 70%); }
.detail-image { position: relative; z-index: 10; max-height: 320px; width: auto; object-fit: contain; filter: drop-shadow(0 20px 20px rgba(0,0,0,0.5)); mix-blend-mode: screen; transition: transform 0.6s; }
.product-image-col:hover .detail-image { transform: scale(1.05) rotate(1deg); }
.product-info-col { display: flex; flex-direction: column; gap: 24px; }
.detail-category { font-size: 10px; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(201,149,108,0.7); }
.detail-title { font-family: var(--font-serif); font-size: 48px; font-weight: 400; letter-spacing: 0.05em; }
.detail-rating { display: flex; align-items: center; gap: 4px; font-size: 14px; }
.text-gold { color: rgba(201,149,108,0.85); }
.detail-reviews { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.1em; margin-left: 8px; }
.detail-desc { color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; letter-spacing: 0.05em; }
.detail-price-wrap { display: flex; align-items: baseline; gap: 12px; }
.detail-price { font-family: var(--font-serif); font-size: 36px; color: rgba(201,149,108,0.9); }
.detail-original-price { color: rgba(255,255,255,0.3); text-decoration: line-through; font-size: 20px; }
.detail-qty-wrap { display: flex; align-items: center; gap: 16px; margin-top: 8px; }
.detail-qty-wrap label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.qty-selector { display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.15); border-radius: 2px; }
.qty-selector button { background: none; border: none; color: rgba(255,255,255,0.6); padding: 8px 12px; cursor: pointer; transition: color 0.3s; }
.qty-selector button:hover { color: #fff; }
.qty-selector span { padding: 8px 20px; font-size: 14px; border-left: 1px solid rgba(255,255,255,0.1); border-right: 1px solid rgba(255,255,255,0.1); }
.detail-actions { display: flex; gap: 12px; margin-top: 8px; }
@media (max-width: 640px) { .detail-actions { flex-direction: column; } }
.btn-checkout-primary { flex: 1; background: linear-gradient(135deg, rgba(201,149,108,0.9), rgba(201,149,108,0.6)); color: #000; border: none; padding: 16px; font-size: 12px; font-weight: 500; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; transition: transform 0.3s; }
.btn-checkout-primary:hover { transform: scale(1.02); }
.btn-add-cart-outline { flex: 1; background: transparent; color: rgba(255,255,255,0.8); border: 1px solid rgba(255,255,255,0.2); padding: 16px; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.btn-add-cart-outline:hover { border-color: rgba(201,149,108,0.6); color: var(--gold); }
.trust-icons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.05); margin-top: 8px; }
.trust-icon-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px; }
.trust-icon-item i { font-size: 16px; color: rgba(201,149,108,0.6); }
.trust-icon-item span { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.4); }

/* Checkout Modal */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); z-index: 200; display: flex; align-items: center; justify-content: center; padding: 16px; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.checkout-modal { width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; background: linear-gradient(160deg, #161210 0%, #0e0c0b 100%); border: 1px solid rgba(201,149,108,0.2); border-radius: 2px; position: relative; transform: scale(0.95) translateY(20px); transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.modal-overlay.active .checkout-modal { transform: scale(1) translateY(0); }
.modal-close { position: absolute; top: 16px; right: 16px; background: none; border: none; color: rgba(255,255,255,0.4); font-size: 20px; cursor: pointer; z-index: 10; transition: color 0.3s; }
.modal-close:hover { color: #fff; }
.checkout-header { padding: 32px 32px 24px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.checkout-title { font-family: var(--font-serif); font-size: 24px; font-weight: 400; letter-spacing: 0.05em; margin-bottom: 16px; }
.checkout-steps { display: flex; align-items: center; gap: 8px; }
.step { display: flex; align-items: center; gap: 8px; }
.step-circle { width: 24px; height: 24px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); transition: all 0.3s; }
.step span { font-size: 9px; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.3); transition: color 0.3s; }
.step-line { width: 24px; height: 1px; background: rgba(255,255,255,0.1); }
.step.active .step-circle { background: rgba(201,149,108,0.9); color: #000; }
.step.active span { color: rgba(201,149,108,0.8); }
.step.done .step-circle { background: rgba(201,149,108,0.4); color: var(--gold); }
.checkout-body { padding: 24px 32px; }
.checkout-step-content { display: none; flex-direction: column; gap: 20px; }
.checkout-step-content.active { display: flex; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.checkout-item-preview { display: flex; align-items: center; gap: 16px; padding: 16px; background: rgba(201,149,108,0.05); border: 1px solid rgba(201,149,108,0.1); border-radius: 2px; }
.checkout-item-preview img { width: 64px; height: 64px; object-fit: contain; mix-blend-mode: screen; flex-shrink: 0; }
.item-info { flex: 1; min-width: 0; }
.item-name { font-family: var(--font-serif); font-size: 18px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.item-cat { color: rgba(255,255,255,0.4); font-size: 12px; letter-spacing: 0.1em; }
.item-price-info { text-align: right; flex-shrink: 0; }
.item-price { color: var(--gold); font-weight: 500; }
.item-qty { color: rgba(255,255,255,0.4); font-size: 12px; }

.form-label { font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.5); display: block; margin-bottom: 6px; }
.promo-input-group { display: flex; gap: 8px; }
.form-input { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; font-size: 14px; padding: 12px 16px; border-radius: 2px; outline: none; transition: border-color 0.3s; }
.form-input::placeholder { color: rgba(255,255,255,0.3); }
.form-input:focus { border-color: rgba(201,149,108,0.6); }
.text-uppercase { text-transform: uppercase; }
.btn-promo { background: rgba(201,149,108,0.15); color: rgba(201,149,108,0.9); border: 1px solid rgba(201,149,108,0.25); padding: 12px 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; }
.btn-promo:hover { background: rgba(201,149,108,0.25); }
.form-error { color: #f87171; font-size: 10px; margin-top: 4px; }
.form-success { color: #4ade80; font-size: 10px; margin-top: 4px; letter-spacing: 0.1em; }

.order-summary-box { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.summary-row { display: flex; justify-content: space-between; font-size: 14px; color: rgba(255,255,255,0.5); }
.summary-row span:last-child { color: #fff; }
.text-success { color: #4ade80 !important; }
.text-xs { font-size: 12px; letter-spacing: 0.1em; }
.total-row { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 12px; margin-top: 4px; font-weight: 500; font-size: 16px; }
.total-row span:last-child { color: var(--gold); font-family: var(--font-serif); font-size: 20px; }

.btn-continue, .btn-place-order, .btn-continue-shopping { width: 100%; background: rgba(201,149,108,0.85); color: #000; border: none; padding: 16px; font-size: 12px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 500; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-continue:hover, .btn-place-order:hover { background: rgba(201,149,108,1); }
.btn-place-order { background: linear-gradient(135deg, rgba(201,149,108,0.9), rgba(201,149,108,0.65)); }

.form-group { margin-bottom: 16px; }
.form-row { display: flex; gap: 16px; }
.form-row .col { flex: 1; }
.step-actions { display: flex; gap: 12px; margin-top: 8px; }
.btn-back { flex: 1; background: transparent; color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.15); padding: 14px; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-back:hover { color: #fff; border-color: rgba(255,255,255,0.3); }

.payment-methods-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.pay-method { background: #fff; color: #000; font-size: 12px; font-weight: 600; padding: 8px 16px; border-radius: 4px; cursor: pointer; border: 2px solid transparent; transition: all 0.2s; }
.pay-method:hover { opacity: 0.9; }
.pay-method.selected { border-color: var(--gold); box-shadow: 0 0 15px rgba(201,149,108,0.4); }

.order-summary-box-small { padding: 16px; background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; }
.security-note { font-size: 9px; letter-spacing: 0.15em; color: rgba(255,255,255,0.25); margin-top: 12px; display: flex; align-items: center; gap: 6px; }
.security-note i { color: rgba(201,149,108,0.5); }

.text-center { text-align: center; }
.success-icon-wrap { width: 64px; height: 64px; border-radius: 50%; background: rgba(201,149,108,0.15); border: 1px solid rgba(201,149,108,0.4); display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.success-icon { font-size: 32px; color: rgba(201,149,108,0.9); }
.success-title { font-family: var(--font-serif); font-size: 30px; margin-bottom: 4px; }
.success-desc { color: rgba(255,255,255,0.4); font-size: 14px; letter-spacing: 0.05em; margin-bottom: 24px; }
.order-num-box { padding: 16px 24px; background: rgba(201,149,108,0.06); border: 1px solid rgba(201,149,108,0.15); border-radius: 2px; margin-bottom: 24px; }
.order-num-box span { font-size: 9px; letter-spacing: 0.3em; text-transform: uppercase; color: rgba(255,255,255,0.4); display: block; margin-bottom: 4px; }
.order-num-box strong { font-family: monospace; font-size: 20px; color: var(--gold); letter-spacing: 0.1em; }
.success-email { color: rgba(255,255,255,0.4); font-size: 14px; margin-bottom: 32px; }
.btn-continue-shopping { border: 1px solid rgba(255,255,255,0.15); background: transparent; color: rgba(255,255,255,0.7); }
.btn-continue-shopping:hover { border-color: rgba(201,149,108,0.5); color: var(--gold); background: transparent; }
