/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: #1a1a1a; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== TOKENS ===== */
:root {
  --gold: #b8912a;
  --gold-light: #d4a843;
  --gold-pale: #f9f3e8;
  --dark: #111111;
  --charcoal: #2c2c2c;
  --muted: #6b6b6b;
  --light: #f8f7f5;
  --white: #ffffff;
  --border: #e8e4dc;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ===== TOPBAR ===== */
.topbar {
  background: var(--dark);
  color: #ccc;
  font-size: 12px;
  letter-spacing: 0.03em;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar .sep { opacity: 0.3; }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-amr {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
}
.logo-sub { font-size: 10px; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }
.nav-links {
  display: flex;
  gap: 28px;
  margin-left: auto;
}
.nav-links a {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--gold); }
.nav-actions { display: flex; align-items: center; gap: 8px; margin-left: 20px; }
.icon-btn {
  background: none; border: none; cursor: pointer;
  color: var(--charcoal); padding: 8px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.icon-btn:hover { background: var(--gold-pale); color: var(--gold); }
.cart-btn { position: relative; }
.cart-count {
  position: absolute; top: 2px; right: 2px;
  background: var(--gold); color: #fff;
  font-size: 9px; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: none; flex-direction: column;
  background: #fff; border-top: 1px solid var(--border);
  padding: 16px 24px;
}
.mobile-menu a {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500; color: var(--charcoal);
}
.mobile-menu.open { display: flex; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer; border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 16px rgba(184,145,42,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(184,145,42,0.45);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-sm { padding: 10px 22px; font-size: 13px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 90vh; min-height: 600px;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,8,5,0.72) 0%, rgba(10,8,5,0.35) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 48px;
  animation: fadeUp 0.9s 0.2s both;
}
@keyframes fadeUp { from { opacity:0; transform: translateY(32px); } to { opacity:1; transform: none; } }
.hero-eyebrow {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 16px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 7vw, 92px);
  font-weight: 300;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,0.8);
  max-width: 500px; line-height: 1.7;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats { display: flex; align-items: center; gap: 24px; }
.stat { display: flex; flex-direction: column; color: #fff; }
.stat strong { font-size: 28px; font-weight: 700; color: var(--gold-light); font-family: 'Cormorant Garamond', serif; }
.stat span { font-size: 12px; opacity: 0.7; letter-spacing: 0.05em; }
.stat-div { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ===== PROMO BANNER ===== */
.promo-banner { background: var(--dark); padding: 28px 24px; }
.promo-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.promo-card {
  display: flex; align-items: center; gap: 16px;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  opacity: 0; transform: translateY(16px);
  transition: all var(--transition);
}
.promo-card:last-child { border-right: none; }
.promo-card.visible { opacity: 1; transform: none; }
.promo-icon { font-size: 28px; }
.promo-card strong { color: #fff; font-size: 14px; display: block; margin-bottom: 2px; }
.promo-card p { color: rgba(255,255,255,0.5); font-size: 12px; }

/* ===== CONTAINER ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 56px; }
.eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400; color: var(--dark);
  line-height: 1.2;
}
.center-btn { text-align: center; margin-top: 40px; }

/* ===== CATEGORIES ===== */
.categories { padding: 100px 0; background: var(--light); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 260px);
  gap: 16px;
}
.cat-card {
  position: relative; overflow: hidden; border-radius: var(--radius);
  display: flex; align-items: flex-end;
  cursor: pointer;
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s, transform 0.5s, box-shadow var(--transition);
}
.cat-card.visible { opacity: 1; transform: none; }
.cat-card:hover { box-shadow: var(--shadow-lg); }
.cat-card:hover .cat-overlay { opacity: 0.75; }
.cat-card:hover .cat-content { transform: translateY(-8px); }
.cat-1 { background: linear-gradient(135deg, #d4a843, #8a6a20); }
.cat-2 { background: linear-gradient(135deg, #2c2c3e, #4a3f6b); }
.cat-3 { background: linear-gradient(135deg, #1a3a2e, #2d6b52); }
.cat-4 { background: linear-gradient(135deg, #4a1a2c, #8b3a5a); }
.cat-5 { background: linear-gradient(135deg, #1a2a3a, #2a4a6a); }
.cat-6 { background: linear-gradient(135deg, #3a2a1a, #6b4a2a); }
.cat-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  transition: opacity var(--transition);
}
.cat-content {
  position: relative; z-index: 2;
  padding: 24px; color: #fff;
  transition: transform var(--transition);
}
.cat-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px; font-weight: 600;
  margin-bottom: 4px;
}
.cat-content p { font-size: 13px; opacity: 0.8; margin-bottom: 12px; }
.cat-link {
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--gold-light);
}

/* ===== BRANDS ===== */
.brands-section { padding: 100px 0; background: #fff; overflow: hidden; }
.brands-scroll { overflow: hidden; margin: 0 -24px 56px; }
.brands-track {
  display: flex; gap: 16px; width: max-content;
  animation: marquee 25s linear infinite;
  padding: 0 24px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brand-pill {
  background: var(--gold-pale);
  border: 1px solid #e2d5b8;
  color: var(--gold);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: 50px;
  white-space: nowrap;
}
.brands-grid {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
}
.brand-tag {
  background: #f5f5f5;
  border: 1px solid var(--border);
  color: var(--charcoal);
  font-size: 13px; font-weight: 500;
  padding: 9px 20px; border-radius: 50px;
  cursor: pointer;
  opacity: 0; transform: scale(0.9);
  transition: all var(--transition);
}
.brand-tag.visible { opacity: 1; transform: scale(1); }
.brand-tag:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.05);
}

/* ===== PRODUCTS ===== */
.products-section { padding: 100px 0; background: var(--light); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(20px);
  transition: all var(--transition);
}
.product-card.visible { opacity: 1; transform: none; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px; z-index: 2;
}
.product-badge.sale { background: #c0392b; }
.product-img-wrap { aspect-ratio: 1/1; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.product-card:hover .product-img { transform: scale(1.06); }
.product-info { padding: 20px; }
.product-brand { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.product-name { font-size: 15px; font-weight: 600; color: var(--dark); margin-bottom: 12px; line-height: 1.4; }
.product-price { display: flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.price { font-size: 18px; font-weight: 700; color: var(--dark); }
.price-orig { font-size: 14px; color: var(--muted); text-decoration: line-through; }

/* ===== ABOUT ===== */
.about-section { padding: 100px 0; background: #fff; }
.about-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; border-radius: 20px; overflow: visible; }
.about-img { border-radius: 20px; box-shadow: var(--shadow-lg); }
.about-badge-float {
  position: absolute; bottom: -24px; right: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
  border-radius: 16px; padding: 20px 28px;
  display: flex; flex-direction: column; align-items: center;
  box-shadow: 0 8px 32px rgba(184,145,42,0.35);
}
.about-badge-float strong { font-size: 36px; font-weight: 800; line-height: 1; }
.about-badge-float span { font-size: 11px; opacity: 0.85; text-align: center; margin-top: 4px; }
.about-text .eyebrow { margin-bottom: 12px; }
.about-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 400; color: var(--dark);
  margin-bottom: 24px; line-height: 1.2;
}
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }
.about-list { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-size: 14px; color: var(--charcoal); }

/* ===== STORES ===== */
.stores-section { padding: 100px 0; background: var(--dark); }
.stores-section .section-header h2 { color: #fff; }
.stores-section .eyebrow { color: var(--gold-light); }
.stores-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.store-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 20px;
  opacity: 0; transform: translateY(16px);
  transition: all var(--transition);
}
.store-card.visible { opacity: 1; transform: none; }
.store-card:hover { background: rgba(255,255,255,0.09); border-color: var(--gold); }
.store-icon { font-size: 24px; margin-bottom: 16px; }
.store-card h4 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.store-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; margin-bottom: 4px; }
.store-hours { color: rgba(255,255,255,0.4) !important; font-size: 12px !important; margin-top: 8px !important; }
.store-link { display: inline-block; margin-top: 16px; font-size: 13px; font-weight: 600; color: var(--gold-light); }
.store-link:hover { color: #fff; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi-card {
  background: #fff; border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  opacity: 0; transform: translateY(16px);
  transition: all var(--transition);
}
.testi-card.visible { opacity: 1; transform: none; }
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.stars { color: var(--gold); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-card p { color: var(--muted); line-height: 1.8; font-size: 15px; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff; font-weight: 700; font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 14px; color: var(--dark); }
.testi-author span { font-size: 12px; color: var(--muted); }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 24px;
  background: linear-gradient(135deg, var(--gold) 0%, #8a6a20 100%);
}
.newsletter-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.newsletter-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 400; color: #fff;
  margin-bottom: 12px;
}
.newsletter-inner p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 32px; }
.newsletter-form { display: flex; gap: 12px; max-width: 480px; margin: 0 auto 16px; }
.nl-input {
  flex: 1; padding: 14px 20px;
  border: none; border-radius: 50px;
  font-size: 14px; outline: none;
  background: rgba(255,255,255,0.95);
}
.newsletter-form .btn-primary {
  background: var(--dark);
  box-shadow: none;
  white-space: nowrap;
}
.newsletter-form .btn-primary:hover { background: #333; transform: none; }
.nl-disclaimer { font-size: 12px; color: rgba(255,255,255,0.6); }
.nl-success { color: #fff; font-size: 16px; font-weight: 600; padding: 16px; }

/* ===== FOOTER ===== */
.footer { background: #0a0a0a; padding: 72px 0 0; }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px 56px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 13.5px; line-height: 1.8; margin-top: 16px; margin-bottom: 24px; }
.footer-logo .logo-amr { font-size: 32px; }
.social-links { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.social-icon:hover { background: var(--gold); border-color: var(--gold); color: #fff; }
.footer-col h5 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: #fff; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: 1280px; margin: 0 auto;
  padding: 24px 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.pay-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.5);
  font-size: 10px; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 10px; border-radius: 6px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .stores-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-inner { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .about-badge-float { right: 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 640px) {
  .cat-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .stores-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px; }
  .hero-btns { flex-direction: column; }
  .newsletter-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .promo-inner { grid-template-columns: 1fr 1fr; }
  .promo-card { border-right: none; }
}
