/* =========================================
   ZIPPO.MA — Global Stylesheet
   Palette: Deep wood + Brushed chrome
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600&family=Courier+Prime:wght@400;700&display=swap');

/* --- Variables --- */
:root {
  --bg:          #1A120E;
  --surface:     #241712;
  --surface-2:   #2E1D16;
  --chrome:      #C0C0C0;
  --chrome-bright: #E8E8E8;
  --chrome-dark: #8A8A8A;
  --cream:       #F4F1EB;
  --amber:       #A86A3A;
  --amber-light: #C8903A;
  --text:        #F4F1EB;
  --text-muted:  #C5B8A8;
  --border:      #3A281F;
  --shadow:      0 8px 40px rgba(0,0,0,0.7);
  --radius:      4px;
  --radius-lg:   8px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--bg);
  background: radial-gradient(
    circle at 40% 30%,
    #3A281F 0%,
    #241712 35%,
    #1A120E 65%,
    #120C09 100%
  );
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  line-height: 1.15;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
p  { font-size: 0.97rem; color: var(--text-muted); }

.price {
  font-family: 'Courier Prime', monospace;
  font-size: 1.1rem;
  color: var(--chrome-bright);
  letter-spacing: 0.05em;
}

.price-original {
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  color: var(--text-muted);
  text-decoration: line-through;
  letter-spacing: 0.04em;
  display: block;
  margin-top: 3px;
}

/* --- Layout --- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.section {
  padding: 80px 0;
}

/* --- Divider --- */
.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--chrome), transparent);
  margin: 16px auto 0;
}
.divider.left { margin: 16px 0 0; }

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background var(--transition), padding var(--transition), opacity 0.5s ease, transform 0.5s ease;
}
.nav.scrolled {
  background: rgba(18, 12, 9, 0.96);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
/* Hero mode: hide nav until user scrolls */
.nav.nav--hero-mode {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}
.nav.nav--hero-mode.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--chrome-bright);
  text-transform: uppercase;
}
.nav__logo span { color: var(--amber-light); }

.nav__links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
  transition: color var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--amber-light);
  transition: width var(--transition);
}
.nav__links a:hover { color: var(--cream); }
.nav__links a:hover::after { width: 100%; }

/* Cart — icon only */
.nav__cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--chrome);
  transition: color var(--transition);
}
.nav__cart:hover { color: var(--cream); }
.nav__cart svg {
  animation: cartBounce 3s ease-in-out infinite;
  animation-delay: 2s;
}
@keyframes cartBounce {
  0%, 100% { transform: rotate(0deg) scale(1); }
  15%       { transform: rotate(-18deg) scale(1.2); }
  30%       { transform: rotate(14deg) scale(1.12); }
  45%       { transform: rotate(-9deg) scale(1.06); }
  60%       { transform: rotate(5deg) scale(1.02); }
  72%       { transform: rotate(0deg) scale(1); }
}
.cart-count {
  background: var(--amber-light);
  color: var(--bg);
  font-size: 0.62rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Courier Prime', monospace;
  position: absolute;
  top: -6px; right: -8px;
}

/* Hamburger → X */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--chrome);
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Backdrop */
.nav__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.nav__backdrop.visible {
  opacity: 1;
  pointer-events: all;
}

/* Mobile slide-in panel */
.nav__mobile {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(300px, 85vw);
  background: #120C09;
  border-left: 1px solid var(--border);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  padding: 80px 32px 40px;
  gap: 4px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav__mobile.open { transform: translateX(0); }

.nav__mobile a {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.25s, padding-left 0.25s;
}
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--cream); padding-left: 6px; }

.nav__mobile-close {
  position: absolute;
  top: 22px; right: 22px;
  width: 34px; height: 34px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--chrome-dark);
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s;
  background: none;
}
.nav__mobile-close:hover {
  border-color: var(--chrome);
  color: var(--cream);
  background: rgba(192,192,192,0.08);
}
.nav__mobile-logo {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  color: var(--chrome-dark);
  text-transform: uppercase;
  margin-bottom: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.nav__mobile-logo span { color: var(--amber-light); }

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  /* Center logo on mobile */
  .nav__inner {
    display: grid;
    grid-template-areas: "cart logo hamburger";
    grid-template-columns: 44px 1fr 44px;
  }
  .nav__logo { grid-area: logo; text-align: center; font-size: 1.3rem; }
  .nav__cart  { grid-area: cart; }
  .nav__hamburger { grid-area: hamburger; justify-self: end; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 56px 24px 64px;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 10, 3, 0.55) 0%,
    rgba(20, 10, 3, 0.3) 35%,
    rgba(20, 10, 3, 0.45) 65%,
    rgba(20, 10, 3, 0.92) 100%
  );
}

/* Tag at top */
.hero__tag {
  position: relative;
  z-index: 2;
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.6);
  text-align: center;
  animation: heroFadeIn 1.2s ease 0.2s both;
}

/* Center area — grows to fill, centers the title */
.hero__center {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Hero title block */
.hero__title-block {
  text-align: center;
  margin-bottom: 2vh;
}

/* Animated word-by-word title */
.hero__title {
  font-size: clamp(3rem, 11vw, 7.5rem);
  line-height: 1.05;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 0.3em;
  animation: none;
  text-shadow: none;
}

/* Each word fades in and shimmers gold */
.hero-word {
  display: inline-block;
  opacity: 0;
  background: linear-gradient(
    90deg,
    #8B5E30 0%,
    #f5d98a 20%,
    #C8903A 40%,
    #fdeea0 60%,
    #C8903A 80%,
    #f5d98a 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation:
    wordReveal 0.55s cubic-bezier(0.34, 1.4, 0.64, 1) calc(var(--i) * 0.38s + 0.4s) forwards,
    goldShimmer 3s linear calc(var(--i) * 0.38s + 1.2s) infinite;
}

@keyframes wordReveal {
  from { opacity: 0; transform: translateY(16px) scale(0.93); }
  to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Tagline below animated title */
.hero__tagline {
  margin-top: 14px;
  font-family: 'Courier Prime', monospace;
  font-size: clamp(0.6rem, 1.8vw, 0.82rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245, 241, 235, 0.5);
  font-style: normal;
  animation: heroFadeIn 1s ease 2.2s both;
}
.hero__tagline em {
  font-style: italic;
  -webkit-text-fill-color: rgba(245, 241, 235, 0.5);
  background: none;
}

/* Mobile: shrink hero buttons to ~50% */
@media (max-width: 600px) {
  .hero__bottom-cta {
    width: min(240px, calc(100% - 32px));
    gap: 8px;
  }
  .btn-hero-fill,
  .btn-hero-outline {
    padding: 8px 10px;
    font-size: 0.58rem;
  }
}

/* Bottom CTA buttons */
.hero__bottom-cta {
  position: relative;
  z-index: 40;
  display: flex;
  flex-direction: row;
  gap: 25px;
  justify-content: center;
  align-items: stretch;
  width: min(1000px, calc(100% - 1px));
  animation: ctaSlideUp 0.9s cubic-bezier(0.34, 1.4, 0.64, 1) 1s both;
}
@keyframes ctaSlideUp {
  0%   { opacity: 0; transform: translateY(0px); }
  100% { opacity: 1; transform: translateY(0); }
}
.btn-hero-fill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #9A5E28, #C8903A);
  color: #1A120E;
  border: 2px solid transparent;
  padding: 14px 16px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--transition), box-shadow var(--transition);
  cursor: pointer;
  animation: heroBtnPulse 2s ease-in-out 2s infinite;
}
.btn-hero-fill:hover {
  background: linear-gradient(135deg, #C8903A, #e0a848);
  box-shadow: 0 8px 30px rgba(200, 144, 58, 0.7);
  animation-play-state: paused;
}
.btn-hero-outline {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245, 241, 235, 0.5);
  padding: 14px 12px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
  cursor: pointer;
  animation: heroOutlinePulse 2.4s ease-in-out 2.4s infinite;
}
.btn-hero-outline:hover {
  background: rgba(245, 241, 235, 0.07);
  border-color: rgba(245, 241, 235, 0.85);
  animation-play-state: paused;
}
@keyframes heroBtnPulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 4px 12px rgba(200,144,58,0.2); }
  50%       { transform: scale(1.07); box-shadow: 0 10px 32px rgba(200,144,58,0.65); }
}
@keyframes heroOutlinePulse {
  0%, 100% { transform: scale(1);    border-color: rgba(245,241,235,0.45); box-shadow: none; }
  50%       { transform: scale(1.06); border-color: rgba(245,241,235,0.9);  box-shadow: 0 0 18px rgba(245,241,235,0.18); }
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes goldShimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
@keyframes zippoGlow {
  0%, 100% { text-shadow: 0 4px 60px rgba(0,0,0,0.95); }
  50%       { text-shadow: 0 4px 60px rgba(0,0,0,0.95), 0 0 80px rgba(200,144,58,0.22), 0 0 160px rgba(200,144,58,0.08); }
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.5s ease;
}
.btn:hover::before { left: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--amber-light), var(--amber));
  color: var(--bg);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #d9a04a, var(--amber-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,144,58,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--border);
}
.btn-secondary:hover {
  border-color: var(--chrome);
  color: var(--chrome-bright);
  background: rgba(192,192,192,0.05);
  transform: translateY(-2px);
}

.btn-outline-amber {
  background: transparent;
  color: var(--amber-light);
  border: 1px solid var(--amber);
}
.btn-outline-amber:hover {
  background: var(--amber);
  color: var(--bg);
}

.btn-full { width: 100%; justify-content: center; }

/* =========================================
   SECTION HEADERS
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-light);
  display: block;
  margin-bottom: 12px;
}
.section-header h2 { color: var(--cream); }
.section-header p {
  max-width: 500px;
  margin: 16px auto 0;
  font-size: 0.95rem;
}

/* =========================================
   PRODUCT CARDS
   ========================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card__body { padding: 12px; }
  .product-card__name { font-size: 0.85rem; }
}
/* Carousel card: smaller image on mobile */
@media (max-width: 768px) {
  .featured-carousel__track .product-card__img { aspect-ratio: 4/3; }
  .featured-carousel__track .product-card__body { padding: 14px 16px; }
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
  border-color: rgba(192,192,192,0.3);
}
.product-card__img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: var(--surface-2);
}
.product-card:hover .product-card__img {
  transform: scale(1.04);
}
.product-card__img-wrap {
  overflow: hidden;
  position: relative;
}
.product-card__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--amber-light);
  color: var(--bg);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
}
.product-card__body {
  padding: 20px;
}
.product-card__collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 6px;
  font-family: 'Courier Prime', monospace;
}
.product-card__name {
  font-family: 'Cinzel', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.3;
}
.product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.product-card__btn {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--chrome);
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.product-card__btn:hover {
  border-color: var(--chrome);
  color: var(--cream);
  background: rgba(192,192,192,0.08);
}

/* =========================================
   FEATURED CAROUSEL
   ========================================= */
.featured-carousel { position: relative; }

/* Desktop: static 4-col grid */
@media (min-width: 769px) {
  .featured-carousel__track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .featured-carousel__track .product-card {
    opacity: 0;
    transform: translateY(28px) scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.3, 0.64, 1),
                box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .featured-carousel__track .product-card.pop {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  .featured-carousel__dots { display: none; }
}

/* Mobile: one-at-a-time carousel */
@media (max-width: 768px) {
  .featured-carousel { overflow: hidden; }
  .featured-carousel__track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .featured-carousel__track .product-card {
    flex: 0 0 100%;
    margin: 0;
    opacity: 1;
    transform: none;
  }
  .featured-carousel__track .product-card.carousel-pop {
    animation: cardPopUp 0.55s cubic-bezier(0.34, 1.3, 0.64, 1) forwards;
  }
}

@keyframes cardPopUp {
  from { opacity: 0.3; transform: scale(0.88) translateY(16px); }
  to   { opacity: 1;   transform: scale(1) translateY(0); }
}

.featured-carousel__dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 24px;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--chrome);
  transform: scale(1.4);
}

/* =========================================
   CATALOGUE FILTERS
   ========================================= */
.filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: 'Courier Prime', monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  border: 1px solid var(--border);
  padding: 10px 24px;
  border-radius: 30px;
  transition: all var(--transition);
  background: transparent;
}
.filter-btn:hover {
  color: var(--cream);
  border-color: var(--chrome-dark);
  background: rgba(192,192,192,0.05);
}
.filter-btn.active {
  background: var(--chrome);
  color: var(--bg);
  border-color: var(--chrome);
  font-weight: 600;
}

/* Card animation on filter */
.product-card.hidden {
  display: none;
}
.product-card.fade-in {
  animation: cardFadeIn 0.4s ease forwards;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   PRODUCT PAGE
   ========================================= */
.product-page {
  padding-top: 120px;
  padding-bottom: 80px;
}
.product-page__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .product-page { padding-top: 80px; padding-bottom: 40px; }
  .product-page__grid { grid-template-columns: 1fr; gap: 14px; }
  .gallery__main { height: 52vw; max-height: 240px; aspect-ratio: unset; object-fit: contain; }
}

/* Gallery */
.gallery__main {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  transition: opacity 0.3s ease;
  cursor: zoom-in;
}
.gallery__thumbs {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.gallery__thumb {
  width: calc(33.33% - 8px);
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition), opacity var(--transition);
  background: var(--surface);
  opacity: 0.6;
}
.gallery__thumb.active,
.gallery__thumb:hover {
  border-color: var(--chrome);
  opacity: 1;
}

/* Product info */
.product-info__collection {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 12px;
}
.product-info__title {
  color: var(--cream);
  margin-bottom: 20px;
}
.product-info__fabrication {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-light);
  background: rgba(200, 144, 58, 0.1);
  border: 1px solid rgba(200, 144, 58, 0.3);
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.product-info__price {
  font-family: 'Courier Prime', monospace;
  font-size: 1.8rem;
  color: var(--chrome-bright);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.product-info__price span {
  font-size: 1rem;
  color: var(--chrome-dark);
}
.product-info__price .price-original {
  font-size: 0.9rem;
  margin-top: 5px;
}
.product-info__desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}

/* Gold dash description list */
.product-desc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.product-desc-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.product-desc-list li::before {
  content: '—';
  color: var(--amber-light);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 1rem;
}
.product-info__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product-info__actions .btn {
  width: 100%;
  justify-content: center;
}
.product-info__livraison {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--chrome-dark);
  margin-top: 16px;
  letter-spacing: 0.05em;
}
.product-info__livraison svg { color: var(--amber); }

/* =========================================
   PANIER (CART)
   ========================================= */
.panier-page {
  padding-top: 120px;
  padding-bottom: 80px;
  min-height: 100vh;
}
.panier-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 900px) {
  .panier-page__grid { grid-template-columns: 1fr; }
}

/* Cart items */
.cart-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.cart-panel h3 {
  color: var(--cream);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--surface-2);
  flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__collection {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber);
  font-family: 'Courier Prime', monospace;
  margin-bottom: 4px;
}
.cart-item__name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.cart-item__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--chrome);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.qty-btn:hover {
  border-color: var(--chrome);
  color: var(--cream);
  background: rgba(192,192,192,0.08);
}
.qty-num {
  font-family: 'Courier Prime', monospace;
  font-size: 0.9rem;
  color: var(--cream);
  min-width: 20px;
  text-align: center;
}
.cart-item__remove {
  color: var(--chrome-dark);
  font-size: 1.1rem;
  transition: color var(--transition);
  padding: 4px;
}
.cart-item__remove:hover { color: #e05555; }
.cart-total {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-total span:first-child {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.cart-empty {
  text-align: center;
  padding: 40px 0;
  color: var(--text-muted);
}
.cart-empty a { color: var(--chrome); text-decoration: underline; }

/* Form panel */
.form-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.form-panel h3 {
  color: var(--cream);
  margin-bottom: 8px;
}
.form-panel p {
  margin-bottom: 28px;
  font-size: 0.85rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  margin-bottom: 8px;
  font-family: 'Courier Prime', monospace;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--chrome-dark);
  background: var(--surface-2);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--chrome-dark); opacity: 0.5; }
.form-group textarea { resize: vertical; min-height: 90px; }

.payment-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(160, 112, 64, 0.1);
  border: 1px solid rgba(160, 112, 64, 0.3);
  border-radius: var(--radius);
  padding: 14px 16px;
  margin-bottom: 24px;
}
.payment-badge svg { color: var(--amber-light); flex-shrink: 0; }
.payment-badge p {
  font-size: 0.82rem;
  margin: 0;
  color: var(--amber-light);
}

.form-error { color: #e05555; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-error.visible { display: block; }

/* =========================================
   ABOUT / BRAND STRIP
   ========================================= */
.brand-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-strip__inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.brand-strip__item {
  padding: 48px 32px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.brand-strip__item:last-child { border-right: none; }
.brand-strip__icon {
  width: 48px; height: 48px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-strip__item h4 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.brand-strip__item p { font-size: 0.82rem; }
@media (max-width: 600px) {
  .brand-strip__inner { grid-template-columns: 1fr; }
  .brand-strip__item { border-right: none; border-bottom: 1px solid var(--border); }
}

/* SVG icon animations */
.icon-flame {
  color: var(--amber-light);
  transform-origin: bottom center;
  animation: flameDance 1.8s ease-in-out infinite;
}
@keyframes flameDance {
  0%, 100% { transform: scaleY(1)    scaleX(1)    rotate(0deg);  }
  20%       { transform: scaleY(1.1)  scaleX(0.94) rotate(-4deg); }
  40%       { transform: scaleY(0.94) scaleX(1.06) rotate(4deg);  }
  60%       { transform: scaleY(1.06) scaleX(0.97) rotate(-2deg); }
  80%       { transform: scaleY(0.97) scaleX(1.02) rotate(1deg);  }
}
.icon-shield {
  color: var(--amber-light);
  animation: shieldPulse 2.6s ease-in-out infinite;
}
@keyframes shieldPulse {
  0%, 100% { transform: scale(1);    filter: drop-shadow(0 0 0px transparent); }
  50%       { transform: scale(1.12); filter: drop-shadow(0 0 10px rgba(200,144,58,0.5)); }
}
.icon-cod {
  color: var(--amber-light);
  animation: codSlide 2.2s ease-in-out infinite;
}
@keyframes codSlide {
  0%, 100% { transform: translateY(0);   filter: drop-shadow(0 0 0px transparent); }
  50%       { transform: translateY(-4px); filter: drop-shadow(0 0 10px rgba(200,144,58,0.5)); }
}
.icon-truck {
  color: var(--amber-light);
  animation: truckRide 2.2s ease-in-out infinite;
}
@keyframes truckRide {
  0%   { transform: translateX(-7px); opacity: 0.5; }
  40%  { transform: translateX(5px);  opacity: 1;   }
  70%  { transform: translateX(3px);  opacity: 1;   }
  100% { transform: translateX(-7px); opacity: 0.5; }
}

/* =========================================
   COLLECTIONS SCROLL WRAP
   ========================================= */
.collections-wrap { position: relative; }
@media (max-width: 900px) {
  .scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
    font-family: 'Courier Prime', monospace;
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    animation: hintFade 4s ease 2.5s forwards;
  }
  .scroll-hint svg { animation: arrowSlide 1s ease-in-out infinite alternate; }
}
@media (min-width: 901px) {
  .scroll-hint { display: none; }
  .collections-wrap::after { display: none; }
}
@keyframes hintFade {
  0% { opacity: 1; }
  100% { opacity: 0; }
}
@keyframes arrowSlide {
  from { transform: translateX(-3px); }
  to   { transform: translateX(4px); }
}

/* =========================================
   FEATURED PRODUCTS SECTION
   ========================================= */
.featured { background: var(--bg); }

/* =========================================
   COLLECTIONS PREVIEW
   ========================================= */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
@media (max-width: 900px) {
  .collections-grid {
    grid-template-columns: repeat(4, calc(60vw - 4px));
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 16px;
    scrollbar-width: none;
    gap: 12px;
  }
  .collections-grid::-webkit-scrollbar { display: none; }
  .collection-card { scroll-snap-align: start; }
  .collection-card__name { font-size: 0.95rem; }
  .collection-card__label { font-size: 0.58rem; letter-spacing: 0.12em; }
  .collection-card__overlay { padding: 14px; }
}
.collection-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 2/3;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition);
}
.collection-card:hover { transform: translateY(-4px); }
.collection-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  background: var(--surface);
}
.collection-card:hover .collection-card__img { transform: scale(1.06); }
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,10,3,0.9) 0%, rgba(20,10,3,0.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}
.collection-card__label {
  font-family: 'Courier Prime', monospace;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 4px;
}
.collection-card__name {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
}

/* =========================================
   CONFIRMATION PAGE
   ========================================= */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}
.confirmation-card {
  text-align: center;
  max-width: 520px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
}
.confirmation-card__icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(160, 112, 64, 0.12);
  border: 2px solid var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2rem;
}
.confirmation-card h2 { color: var(--cream); margin-bottom: 16px; }
.confirmation-card p { margin-bottom: 12px; }
.confirmation-card .btn { margin-top: 28px; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}
.footer__brand .nav__logo { margin-bottom: 12px; font-size: 1.4rem; }
.footer__brand p { font-size: 0.85rem; max-width: 280px; text-align: center; margin: 0 auto; }
.footer__brand { text-align: center; }

/* Social icons */
.footer-socials {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background: rgba(200, 144, 58, 0.1);
  border: 1px solid rgba(200, 144, 58, 0.28);
  border-radius: 50%;
  color: var(--amber);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  animation: socialFloat 3s ease-in-out infinite;
  flex-shrink: 0;
}
.footer-social:nth-child(2) { animation-delay: 0.35s; }
.footer-social:nth-child(3) { animation-delay: 0.7s; }
.footer-social svg { width: 18px; height: 18px; }
.footer-social:hover {
  transform: scale(1.18) translateY(-3px);
  background: rgba(200, 144, 58, 0.22);
  box-shadow: 0 8px 24px rgba(200, 144, 58, 0.45);
  animation-play-state: paused;
}
@keyframes socialFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}
.footer__col h4 {
  font-family: 'Courier Prime', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--chrome-dark);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: 0.78rem; color: var(--chrome-dark); margin: 0; }

/* =========================================
   PAGE HEADER (catalogue, panier, etc.)
   ========================================= */
.page-header {
  padding: 140px 0 60px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 64px;
}
.page-header .eyebrow {
  font-family: 'Courier Prime', monospace;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber-light);
  display: block;
  margin-bottom: 12px;
}
.page-header h1 { color: var(--cream); }

/* =========================================
   TOAST NOTIFICATION
   ========================================= */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 40px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  z-index: 9999;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  white-space: nowrap;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* =========================================
   LOADING PLACEHOLDER
   ========================================= */
.skeleton {
  background: linear-gradient(90deg, var(--surface) 25%, var(--surface-2) 50%, var(--surface) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: var(--radius);
}
@keyframes shimmer {
  from { background-position: 200% 0; }
  to   { background-position: -200% 0; }
}

/* =========================================
   SCROLLBAR
   ========================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--amber); }

/* =========================================
   UTILITY
   ========================================= */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* =========================================
   LIGHTBOX
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 6, 4, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}
.lightbox.open {
  opacity: 1;
  pointer-events: all;
}
.lightbox__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
}
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  transition: opacity 0.2s ease;
  display: block;
  cursor: default;
}
.lightbox__img.switching { opacity: 0; }

.lightbox__close {
  position: fixed;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
  border: 1px solid rgba(255,255,255,0.12);
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }

.lightbox__arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  color: var(--cream);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 10001;
  border: 1px solid rgba(255,255,255,0.1);
}
.lightbox__arrow:hover {
  background: rgba(200, 144, 58, 0.25);
  border-color: var(--amber);
}
.lightbox__arrow--prev { left: 16px; }
.lightbox__arrow--next { right: 16px; }
.lightbox__arrow:active { transform: translateY(-50%) scale(0.92); }

.lightbox__counter {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Courier Prime', monospace;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  background: rgba(26, 18, 14, 0.7);
  padding: 6px 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  z-index: 10001;
}

.lightbox__dots {
  position: fixed;
  bottom: 72px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10001;
}
.lightbox__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.lightbox__dot.active {
  background: var(--amber-light);
  transform: scale(1.3);
}

/* Make gallery main image show pointer cursor to hint at click */
.gallery__main {
  cursor: zoom-in;
}

@media (max-width: 600px) {
  .lightbox__arrow { display: none; }
  .lightbox { padding: 12px; }
  .lightbox__img { max-height: 75vh; border-radius: var(--radius); }
}
