/* ============================================================
   BLOSSOM – Minimal Elegance
   Inspired by clean editorial fashion store design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500&display=swap');

/* ===== VARIABLES ===== */
:root {
  --white:       #E2DDD0;
  --off-white:   #dbd5c8;   /* ostra con tono cálido suave */
  --light-gray:  #d4cec1;   /* gris cálido armónico */
  --border:      #e8d8d8;   /* borde calido */
  --border-dark: #c9aaaa;

  --text-black:  #170000;   /* borgoña casi negro */
  --text-dark:   #2d0808;
  --text-mid:    #6b3535;
  --text-light:  #9e6868;
  --text-muted:  #c4a0a0;

  --wine:        #56070c;   /* crimson principal */
  --wine-dark:   #350a06;   /* borgoña medio */
  --wine-black:  #170000;   /* casi negro – oscuro máximo */
  --wine-light:  #7a1018;   /* tono intermedio */
  --wine-muted:  #c9a0a0;   /* vino muy claro / arena */

  /* aliases para compatibilidad interna */
  --terra:       #56070c;
  --terra-light: #7a1018;
  --sand:        #c9a0a0;
  --espresso:    #170000;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Jost', sans-serif;

  --transition: 0.25s ease;
  --transition-slow: 0.5s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  /* Fondo con difuminado suave (vignette sutil) en tonos ostra para quitar el efecto mate plano */
  background: radial-gradient(ellipse at top, #f7f5f0 0%, var(--white) 70%, #dcd6c8 100%);
  background-attachment: fixed;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--border-dark); }

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--wine-black);
  color: rgba(255,255,255,0.8);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 300;
  border-bottom: 1px solid var(--wine-dark);
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 2.5rem;
  height: 64px;
  transition: box-shadow var(--transition);
}

.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 400;
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-link:hover { color: var(--wine); }

.nav-logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--text-black);
}

.nav-logo-sub {
  font-size: 0.58rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
  margin-top: 2px;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.4rem;
}

.nav-icon {
  color: var(--text-mid);
  font-size: 0.95rem;
  transition: color var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
}

.nav-icon:hover { color: var(--wine); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 2px;
}

.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text-dark);
  transition: var(--transition);
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: 0; left: 0;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  padding: 2rem;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-right: 1px solid var(--border);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.mobile-nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.mobile-nav-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--text-mid);
  cursor: pointer;
}

.mobile-nav a {
  display: block;
  padding: 1rem 0;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}

.mobile-nav a:hover { color: var(--text-black); }

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 998;
}

.mobile-overlay.show { display: block; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 72vh;
  min-height: 480px;
  max-height: 680px;
  overflow: hidden;
  background: var(--light-gray);
}

/* Faded edge overlay for the hero banner */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 100px var(--white), inset 0 0 40px rgba(226, 221, 208, 0.5); /* difuminado del marco */
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(253,248,248,0.93) 0%, rgba(253,248,248,0.6) 45%, transparent 70%);
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  max-width: 620px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--terra);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 600;
  line-height: 1.0;
  color: var(--text-black);
  margin-bottom: 1.2rem;
  letter-spacing: -0.02em;
}

.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--wine-dark);
}

.hero-subtitle {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  font-weight: 400;
  max-width: 440px;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.8rem 2rem;
  border: 1px solid var(--wine);
  color: var(--wine);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: transparent;
  transition: var(--transition);
}

.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
}

/* ===== SECTION HEADER ===== */
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--text-black);
  letter-spacing: 0.02em;
}

.section-title em { font-style: italic; }

.section-link {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mid);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
  white-space: nowrap;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.section-link:hover {
  color: var(--text-black);
  border-bottom-color: var(--text-black);
}

/* ===== CATALOG SECTION ===== */
.catalog-section {
  padding: 5rem 5%;
  background: transparent;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }

.filter-btn {
  padding: 0.75rem 1.6rem;
  border: none;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  margin-bottom: -1px;
}

.filter-btn:hover { color: var(--text-dark); }

.filter-btn.active {
  color: var(--wine);
  border-bottom-color: var(--wine);
  font-weight: 500;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem 1.2rem;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  cursor: pointer;
  position: relative;
  opacity: 0;
  animation: fadeUp 0.5s ease forwards;
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }

.product-card.hidden { display: none; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-image-wrap {
  position: relative;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: transparent;
  margin-bottom: 0.8rem;
}

/* Faded edge overlay for product images */
.card-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 25px var(--white);
  pointer-events: none;
}

.card-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply; /* Helps white background products blend perfectly into the oyster page */
  transition: transform var(--transition-slow);
}

.product-card:hover .card-image-wrap img { transform: scale(1.04); }

.card-badge {
  position: absolute;
  top: 0; left: 0;
  padding: 0.3rem 0.7rem;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.badge-new { background: var(--wine-dark); color: var(--white); }
.badge-fav { background: var(--wine-muted); color: var(--wine-black); }
.badge-limited { background: var(--off-white); color: var(--wine); border: 1px solid var(--wine); }

.card-wishlist {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
  opacity: 0;
}

.product-card:hover .card-wishlist { opacity: 1; }
.card-wishlist:hover, .card-wishlist.active { color: var(--wine); }

.card-quick-btn {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.85rem;
  background: rgba(23, 0, 0, 0.92);
  color: var(--white);
  border: none;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  transform: translateY(100%);
}

.product-card:hover .card-quick-btn { transform: translateY(0); }
.card-quick-btn:hover { background: var(--wine); }

.card-category {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
  margin-bottom: 0.3rem;
}

.card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.2rem;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 0.6rem;
  font-weight: 300;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.5rem;
}

.card-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--text-dark);
}

.card-colors { display: flex; gap: 4px; }

.color-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  border: 1.5px solid var(--white);
  outline: 1px solid rgba(0,0,0,0.15);
  cursor: pointer;
  transition: transform var(--transition);
}

.color-dot:hover { transform: scale(1.3); }

/* ===== ABOUT STRIP ===== */
.about-strip {
  display: grid;
  grid-template-columns: 5fr 7fr;
  background: transparent;
  max-height: 420px;
  overflow: hidden;
}

.about-image-col {
  overflow: hidden;
  position: relative;
}

/* Faded edge overlay for about image */
.about-image-col::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 60px var(--white);
  pointer-events: none;
}

.about-image-col img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform var(--transition-slow);
}

.about-image-col:hover img { transform: scale(1.03); }

.about-content-col {
  padding: 2.5rem 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: transparent;
  overflow-y: auto;
}

.about-label {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 1.2rem;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--text-black);
  margin-bottom: 1rem;
}

.about-title em { font-style: italic; }

.about-body {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.2rem;
  max-width: 400px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem 2rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.feature-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.3rem;
  font-weight: 500;
}

.feature-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 400;
}

/* ===== MID BANNER ===== */
.mid-banner {
  padding: 7rem 5%;
  background: var(--espresso);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mid-banner::before {
  content: 'BLOSSOM';
  position: absolute;
  font-family: var(--font-display);
  font-size: 18rem;
  font-weight: 600;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.2em;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
}

.mid-banner-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.mid-banner-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.mid-banner-title em { font-style: italic; }

.mid-banner-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  max-width: 460px;
  margin: 0 auto 3rem;
  line-height: 1.9;
  font-weight: 300;
}

.mid-banner-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 2rem;
  background: var(--white);
  color: var(--espresso);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid var(--white);
  transition: var(--transition);
}

.btn-white:hover { background: transparent; color: var(--white); }

.btn-white-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 2rem;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.3);
  transition: var(--transition);
}

.btn-white-outline:hover { border-color: var(--white); color: var(--white); }

/* ===== SOCIAL GRID ===== */
.social-section {
  padding: 5rem 5%;
  background: var(--white);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.social-item {
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.social-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  filter: grayscale(15%);
}

.social-item:hover img { transform: scale(1.06); filter: grayscale(0%); }

.social-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(23,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-item:hover .social-item-overlay { background: rgba(53,10,6,0.5); }

.social-item-overlay i {
  color: var(--white);
  font-size: 1.3rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.social-item:hover .social-item-overlay i { opacity: 1; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 5rem 5%;
  background: var(--light-gray);
  text-align: center;
}

.newsletter-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 1rem;
}

.newsletter-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--text-black);
  margin-bottom: 0.8rem;
}

.newsletter-title em { font-style: italic; }

.newsletter-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
  font-weight: 300;
}

.newsletter-form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border-bottom: 1px solid var(--text-black);
}

.newsletter-form input {
  flex: 1;
  padding: 0.8rem 0;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-dark);
  outline: none;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form button {
  padding: 0.8rem 0 0.8rem 1.5rem;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dark);
  cursor: pointer;
  transition: color var(--transition);
}

.newsletter-form button:hover { color: var(--wine); }

/* ===== FOOTER ===== */
.footer {
  background: var(--off-white);
  border-top: 1px solid var(--border);
}

.footer-top {
  padding: 4rem 5%;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--text-black);
  margin-bottom: 1rem;
}

.footer-tagline {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.8;
  font-weight: 300;
  max-width: 260px;
  margin-bottom: 1.8rem;
}

.footer-social-row {
  display: flex;
  gap: 1rem;
}

.footer-social-icon {
  width: 32px; height: 32px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  font-size: 0.8rem;
  transition: var(--transition);
}

.footer-social-icon:hover {
  border-color: var(--wine);
  background: var(--wine);
  color: var(--white);
}

.footer-col-title {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dark);
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-col ul li a {
  font-size: 0.82rem;
  color: var(--text-light);
  transition: color var(--transition);
  font-weight: 300;
}

.footer-col ul li a:hover { color: var(--wine); }

.footer-bottom {
  padding: 1.5rem 5%;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== LIGHTBOX ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,0,0,0.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.lightbox-overlay.active { opacity: 1; pointer-events: all; }

.lightbox-card {
  background: var(--white);
  max-width: 860px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 88vh;
  transform: translateY(20px);
  transition: transform 0.35s ease;
  position: relative;
}

.lightbox-overlay.active .lightbox-card { transform: translateY(0); }

.lightbox-image {
  overflow: hidden;
  background: var(--light-gray);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lightbox-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background: rgba(23, 0, 0, 0.7);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 6;
  font-size: 0.85rem;
  transition: var(--transition);
  opacity: 0.85;
}

.lightbox-nav-arrow:hover {
  background: var(--wine);
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-prev { left: 12px; }
.lightbox-nav-next { right: 12px; }

.lightbox-gallery-thumbs {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  background: rgba(23,0,0,0.75);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 24px;
  z-index: 8;
  max-width: 90%;
  overflow-x: auto;
}

.lightbox-thumb-item {
  width: 42px !important;
  height: 52px !important;
  max-width: 42px !important;
  max-height: 52px !important;
  border-radius: 4px;
  border: 2px solid transparent !important;
  cursor: pointer;
  object-fit: cover !important;
  transition: all 0.2s ease !important;
  opacity: 0.65;
  display: block !important;
}

.lightbox-thumb-item:hover,
.lightbox-thumb-item.active {
  opacity: 1 !important;
  border-color: #ffffff !important;
  transform: scale(1.08);
}

.lightbox-content {
  padding: 3rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px solid var(--border);
}

.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 38px; height: 38px;
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  transition: var(--transition);
  z-index: 10;
}

.lightbox-close:hover {
  background: var(--wine);
  color: var(--white);
  border-color: var(--wine);
}

.lightbox-category {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.lightbox-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-black);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.lightbox-price {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--terra);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.lightbox-divider { width: 40px; height: 1px; background: var(--border); margin-bottom: 1.5rem; }

.lightbox-desc {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.9;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.lightbox-chips { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.2rem; }

.lightbox-option-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 500;
  margin-bottom: 0.4rem;
}

.lightbox-size-pill {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.75rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.lightbox-size-pill:hover {
  border-color: var(--wine);
  color: var(--wine);
}

.lightbox-size-pill.selected {
  background: var(--wine-black);
  color: var(--white);
  border-color: var(--wine-black);
}

.lightbox-color-swatch {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #fff;
  outline: 1px solid var(--border-dark);
  cursor: pointer;
  transition: transform var(--transition), outline-color var(--transition);
  display: inline-block;
}

.lightbox-color-swatch:hover {
  transform: scale(1.15);
}

.lightbox-color-swatch.selected {
  outline: 2px solid var(--wine-black);
  outline-offset: 2px;
  transform: scale(1.15);
}

.lightbox-actions { display: flex; flex-direction: column; gap: 0.7rem; }

.lightbox-btn {
  width: 100%;
  padding: 0.95rem;
  border: none;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}

.lightbox-btn-cart {
  background: var(--wine-black);
  color: var(--white);
  border: 1px solid var(--wine-black);
}
.lightbox-btn-cart:hover {
  background: var(--wine);
  border-color: var(--wine);
}

/* ===== NAVBAR CART BADGE ===== */
.cart-badge-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--wine);
  color: #fff;
  font-size: 0.58rem;
  font-weight: 600;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ===== CART NOTICE MODAL ===== */
.cart-notice-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,0,0,0.65);
  backdrop-filter: blur(4px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-notice-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.cart-notice-card {
  background: var(--white);
  padding: 2.2rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  transform: scale(0.95);
  transition: transform 0.3s ease;
  border: 1px solid var(--border);
}

.cart-notice-overlay.active .cart-notice-card {
  transform: scale(1);
}

.cart-notice-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--text-light);
  cursor: pointer;
  transition: color var(--transition);
}

.cart-notice-close:hover { color: var(--text-black); }

.cart-notice-icon {
  font-size: 2.2rem;
  color: var(--wine);
  margin-bottom: 0.8rem;
}

.cart-notice-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text-black);
  margin-bottom: 0.3rem;
}

.cart-notice-subtitle {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
  font-weight: 300;
}

.cart-notice-summary {
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 1rem;
  margin-bottom: 1.5rem;
  max-height: 180px;
  overflow-y: auto;
  text-align: left;
}

.cart-item-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  border-bottom: 1px dashed var(--border);
}

.cart-item-row:last-child { border-bottom: none; }

.cart-item-name { color: var(--text-dark); font-weight: 500; }
.cart-item-price { color: var(--wine); font-family: var(--font-display); font-weight: 600; }

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1.5px solid var(--border-dark);
  font-weight: 600;
  font-size: 0.9rem;
}

.cart-notice-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.btn-cart-checkout {
  width: 100%;
  padding: 0.9rem;
  background: var(--wine-black);
  color: var(--white);
  border: 1px solid var(--wine-black);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}

.btn-cart-checkout:hover {
  background: var(--wine);
  border-color: var(--wine);
}

.btn-cart-continue {
  width: 100%;
  padding: 0.85rem;
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--border-dark);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: var(--transition);
}

.btn-cart-continue:hover {
  border-color: var(--text-black);
  color: var(--text-black);
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--text-black);
  color: var(--white);
  padding: 0.75rem 1.6rem;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  z-index: 2000;
  display: flex; align-items: center; gap: 8px;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.toast.show { transform: translateX(-50%) translateY(0); }
.toast-icon { color: var(--terra-light); }

/* ===== SCROLL TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 42px; height: 42px;
  background: var(--wine-dark);
  color: var(--white);
  border: none;
  font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  z-index: 99;
}

.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--wine); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 900px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .about-strip { grid-template-columns: 1fr; }
  .about-image-col { aspect-ratio: 16/9; }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
  .nav-left { display: none; }
  .hamburger { display: flex; }
  .lightbox-card { grid-template-columns: 1fr; max-height: 85vh; }
  .lightbox-image { max-height: 280px; }
  .about-content-col { padding: 3rem 5%; }
}

@media (max-width: 600px) {
  .navbar { padding: 0 1.2rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem 0.8rem; }
  .catalog-section { padding: 3rem 4%; }
  .mid-banner { padding: 4rem 5%; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .hero-title { font-size: 3rem; }
  .newsletter-form { flex-direction: column; border: none; gap: 1rem; }
  .newsletter-form input { border-bottom: 1px solid var(--text-black); padding: 0.6rem 0; }
  .newsletter-form button { padding: 0.8rem 2rem; border: 1px solid var(--text-black); }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
