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

:root {
  --gold: oklch(72% 0.11 78);
  --gold-light: oklch(88% 0.07 82);
  --gold-dark: oklch(55% 0.10 72);
  --bg: #FAFAF7;
  --bg-card: #F5F3EE;
  --ink: #1A1916;
  --ink-mid: #6B6860;
  --ink-light: #B0ADA6;
  --white: #FFFFFF;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 4rem;
  background: rgba(250,250,247,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(184,162,110,0.15);
  transition: padding 0.4s;
}
nav.scrolled { padding: 1rem 4rem; }
.nav-logo {
  font-family: 'Cormorant', serif;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
}
.nav-logo span { color: var(--gold-dark); }
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.72rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ink-mid);
  text-decoration: none; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-cart {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mid); cursor: pointer; font-weight: 500;
  transition: color 0.2s; background: none; border: none;
}
.nav-cart:hover { color: var(--gold-dark); }
.cart-badge {
  background: var(--gold-dark); color: var(--white);
  border-radius: 50%; width: 18px; height: 18px;
  font-size: 0.6rem; display: flex; align-items: center; justify-content: center;
  font-weight: 600;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, oklch(88% 0.06 82 / 0.3), transparent),
    radial-gradient(ellipse 60% 80% at 80% 100%, oklch(85% 0.05 78 / 0.2), transparent),
    var(--bg);
}
.hero-line {
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 3rem;
  animation: lineGrow 1.2s ease forwards;
}
@keyframes lineGrow { from { transform: scaleY(0); opacity: 0; } to { transform: scaleY(1); opacity: 1; } }
.hero-logo {
  display: block;
  height: 110px; width: auto;
  margin: 0 auto 1.75rem;
  animation: fadeUp 1s 0.1s ease both;
}
.hero-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold-dark);
  font-weight: 500; margin-bottom: 1.5rem;
  animation: fadeUp 1s 0.3s ease both;
}
.hero-brand-sub {
  font-family: 'Cormorant', serif;
  font-size: 1.3rem; font-weight: 300;
  letter-spacing: 0.45em; text-transform: lowercase;
  color: var(--gold-dark);
  margin: -0.6rem 0 2.5rem; padding-left: 0.45em; /* compensa el tracking para centrar óptico */
  animation: fadeUp 1s 0.6s ease both;
}
.hero-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300; line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  animation: fadeUp 1s 0.5s ease both;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic; color: var(--gold-dark);
  font-weight: 300;
}
.hero-sub {
  font-size: 0.9rem; letter-spacing: 0.12em;
  color: var(--ink-mid); font-weight: 300;
  max-width: 36ch; margin: 0 auto 3rem;
  line-height: 1.8;
  animation: fadeUp 1s 0.7s ease both;
}
.hero-cta {
  display: inline-flex; align-items: center; gap: 0.8rem;
  padding: 1rem 2.5rem;
  border: 1px solid var(--gold);
  color: var(--ink); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; font-family: 'Raleway', sans-serif;
  transition: background 0.3s, color 0.3s;
  animation: fadeUp 1s 0.9s ease both;
  position: relative; z-index: 1;
}
.hero-cta:hover { background: var(--gold-dark); color: var(--white); border-color: var(--gold-dark); }
.hero-cta svg { transition: transform 0.3s; }
.hero-cta:hover svg { transform: translateX(4px); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  font-size: 0.6rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-light); animation: fadeUp 1s 1.1s ease both;
}
.scroll-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ── STRIP ── */
.strip {
  background: var(--ink);
  padding: 1rem 4rem;
  display: flex; align-items: center; justify-content: center; gap: 3rem;
  overflow: hidden;
}
.strip-item {
  font-size: 0.65rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); white-space: nowrap; font-weight: 400;
}
.strip-dot { color: var(--gold); font-size: 0.5rem; }

/* ── SECTION COMMON ── */
section { padding: 6rem 4rem; }
.section-label {
  font-size: 0.65rem; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500; margin-bottom: 1rem;
}
.section-title {
  font-family: 'Cormorant', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--ink); margin-bottom: 1rem;
}
.section-line {
  width: 48px; height: 1px; background: var(--gold);
  margin: 1.5rem 0;
}

/* ── CATALOG ── */
#catalogo { max-width: 1400px; margin: 0 auto; }
.catalog-header { text-align: center; margin-bottom: 3.5rem; }
.catalog-header .section-line { margin: 1.5rem auto; }
.catalog-filters {
  display: flex; gap: 0.5rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background: none; cursor: pointer;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--ink-mid); font-family: 'Raleway', sans-serif;
  font-weight: 500; transition: all 0.25s;
}
.filter-btn:hover { border-color: var(--gold-light); color: var(--ink); }
.filter-btn.active { border-color: var(--gold-dark); color: var(--gold-dark); background: oklch(88% 0.06 82 / 0.15); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
}
.product-card {
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
  position: relative;
}
.product-card:hover { transform: translateY(-4px); }
.product-card:hover .product-overlay { opacity: 1; }
.product-img {
  aspect-ratio: 3/4;
  background: var(--bg-card);
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 1rem;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-card) 0px,
    var(--bg-card) 8px,
    oklch(90% 0.05 82 / 0.4) 8px,
    oklch(90% 0.05 82 / 0.4) 9px
  );
}
.placeholder-icon { color: var(--gold-light); opacity: 0.6; }
.placeholder-label {
  font-size: 0.6rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-light); font-family: 'Raleway', sans-serif;
}
.product-badge {
  position: absolute; top: 1rem; left: 1rem;
  background: var(--ink); color: var(--gold-light);
  font-size: 0.55rem; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 0.3rem 0.7rem; font-weight: 500;
  z-index: 2;
}
.product-overlay {
  position: absolute; inset: 0;
  background: rgba(26,25,22,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.overlay-btn {
  background: var(--white); color: var(--ink);
  border: none; padding: 0.8rem 1.8rem;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-family: 'Raleway', sans-serif; font-weight: 500;
  cursor: pointer; transition: background 0.2s;
}
.overlay-btn:hover { background: var(--gold-dark); color: var(--white); }
.product-info {
  padding: 1.2rem 1.4rem 1.6rem;
  border-top: 1px solid oklch(90% 0.04 82 / 0.5);
}
.product-cat {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500; margin-bottom: 0.4rem;
}
.product-name {
  font-family: 'Cormorant', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--ink); margin-bottom: 0.3rem;
}
.product-desc {
  font-size: 0.72rem; color: var(--ink-light); line-height: 1.6;
  margin-bottom: 1rem; font-weight: 300;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
}
.product-price {
  font-size: 1rem; font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
}
.product-price span {
  font-size: 0.7rem; color: var(--ink-mid); font-weight: 300;
}
.whatsapp-btn {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--ink); color: var(--white);
  border: none; padding: 0.6rem 1rem;
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-family: 'Raleway', sans-serif; font-weight: 500;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s;
}
.whatsapp-btn:hover { background: #1a6b3c; }

/* ── CART PANEL ── */
.cart-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(26,25,22,0.5);
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 201;
  width: min(420px, 100vw);
  background: var(--white);
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
}
.cart-panel.open { transform: translateX(0); }
.cart-header {
  padding: 2rem; border-bottom: 1px solid var(--bg-card);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h2 {
  font-family: 'Cormorant', serif; font-weight: 300;
  font-size: 1.4rem; letter-spacing: 0.1em;
}
.cart-close {
  background: none; border: none; cursor: pointer;
  color: var(--ink-mid); font-size: 1.4rem; line-height: 1;
}
.cart-items { flex: 1; overflow-y: auto; padding: 1.5rem 2rem; }
.cart-empty {
  text-align: center; padding: 3rem 1rem;
  color: var(--ink-light); font-size: 0.8rem; letter-spacing: 0.1em;
}
.cart-item {
  display: flex; gap: 1rem; padding: 1rem 0;
  border-bottom: 1px solid var(--bg-card);
  align-items: flex-start;
}
.cart-item-img {
  width: 64px; height: 80px; background: var(--bg-card);
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 0.5rem; color: var(--ink-light); letter-spacing: 0.1em;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-family: 'Cormorant', serif; font-size: 1rem; margin-bottom: 0.2rem; }
.cart-item-price { font-size: 0.78rem; color: var(--gold-dark); font-weight: 500; }
.cart-item-qty {
  display: flex; align-items: center; gap: 0.5rem; margin-top: 0.4rem;
}
.cart-qty-btn {
  width: 22px; height: 22px;
  background: var(--bg-card); border: none; cursor: pointer;
  font-size: 0.85rem; color: var(--ink); font-weight: 400;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.cart-qty-btn:hover { background: var(--gold-light); }
.cart-qty-num { font-size: 0.78rem; min-width: 18px; text-align: center; }
.cart-item-remove {
  background: none; border: none; cursor: pointer;
  color: var(--ink-light); font-size: 1rem; padding: 0;
}
.cart-footer {
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--bg-card);
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 1.5rem;
  font-size: 0.75rem; letter-spacing: 0.1em;
}
.cart-total span:first-child { text-transform: uppercase; color: var(--ink-mid); }
.cart-total span:last-child { font-size: 1.2rem; font-weight: 500; }
.cart-checkout {
  width: 100%; padding: 1rem;
  background: var(--ink); color: var(--white); border: none;
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  text-decoration: none;
}
.cart-checkout:hover { background: #1a6b3c; }

/* ── ABOUT ── */
.about-section {
  background: var(--ink);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0;
}
.about-img {
  background: repeating-linear-gradient(
    -45deg,
    oklch(25% 0.02 78) 0px,
    oklch(25% 0.02 78) 10px,
    oklch(22% 0.015 75) 10px,
    oklch(22% 0.015 75) 11px
  );
  min-height: 480px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover;
  background-position: center;
}
.about-img.has-image { background-image: var(--brand-img); }
.about-img.has-image .about-img-label { display: none; }
.about-img-label {
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: oklch(50% 0.06 78);
  font-family: 'Raleway', monospace;
}
.about-content {
  padding: 6rem 5rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-content .section-label { color: var(--gold-light); }
.about-content .section-title { color: var(--white); }
.about-content p {
  font-size: 0.88rem; color: oklch(80% 0.02 78);
  line-height: 1.9; font-weight: 300; margin-bottom: 1.5rem;
}
.about-stats {
  display: flex; gap: 3rem; margin-top: 2rem;
}
.stat-num {
  font-family: 'Cormorant', serif;
  font-size: 2.5rem; color: var(--gold-light); font-weight: 300;
  line-height: 1;
}
.stat-label {
  font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: oklch(60% 0.03 78); margin-top: 0.3rem;
}

/* ── QUALITY ── */
.quality-section {
  max-width: 1200px; margin: 0 auto;
  text-align: center;
}
.quality-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem;
  margin-top: 3rem;
}
.quality-item { padding: 2.5rem 2rem; background: var(--white); }
.quality-icon { margin-bottom: 1.5rem; }
.quality-item h3 {
  font-family: 'Cormorant', serif; font-size: 1.2rem; font-weight: 400;
  margin-bottom: 0.8rem;
}
.quality-item p { font-size: 0.8rem; color: var(--ink-mid); line-height: 1.8; }

/* ── CONTACT ── */
.contact-section {
  background: var(--bg-card);
  max-width: 100%;
}
.contact-inner {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
  align-items: start;
}
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-mid); font-weight: 500;
}
.form-group input, .form-group textarea, .form-group select {
  background: var(--white); border: 1px solid oklch(88% 0.04 82);
  padding: 0.85rem 1rem; font-family: 'Raleway', sans-serif;
  font-size: 0.85rem; color: var(--ink); outline: none;
  transition: border-color 0.2s; font-weight: 300;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.submit-btn {
  background: var(--ink); color: var(--white); border: none;
  padding: 1rem; font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  font-weight: 500; cursor: pointer; transition: background 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
}
.submit-btn:hover { background: #1a6b3c; }
.contact-info { padding-top: 0.5rem; }
.contact-info .section-line { margin: 1.5rem 0; }
.contact-item {
  display: flex; flex-direction: column; gap: 0.3rem;
  margin-bottom: 2rem;
}
.contact-item-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500;
}
.contact-item-value {
  font-size: 0.9rem; color: var(--ink); font-weight: 300;
}
.whatsapp-direct {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--ink); color: var(--white);
  padding: 0.9rem 1.8rem; text-decoration: none;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  font-weight: 500; transition: background 0.2s; margin-top: 0.5rem;
}
.whatsapp-direct:hover { background: #1a6b3c; }

/* ── INSTAGRAM ── */
.instagram-section {
  text-align: center; padding-bottom: 2rem;
}
.instagram-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 2px; margin-top: 2.5rem;
}
.insta-cell {
  aspect-ratio: 1;
  background: var(--bg-card);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; cursor: pointer;
  background: repeating-linear-gradient(
    45deg,
    var(--bg-card) 0px,
    var(--bg-card) 8px,
    oklch(90% 0.05 82 / 0.4) 8px,
    oklch(90% 0.05 82 / 0.4) 9px
  );
}
.insta-cell img { width: 100%; height: 100%; object-fit: cover; }
.insta-cell:hover .insta-hover { opacity: 1; }
.insta-hover {
  position: absolute; inset: 0;
  background: rgba(26,25,22,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.25s;
}
.insta-icon { color: var(--white); }
.insta-label {
  font-size: 0.55rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-light); font-family: monospace;
}
.insta-handle {
  display: inline-flex; align-items: center; gap: 0.5rem;
  margin-top: 2.5rem;
  font-size: 0.8rem; letter-spacing: 0.12em;
  color: var(--ink-mid); text-decoration: none;
  border-bottom: 1px solid var(--gold-light); padding-bottom: 0.3rem;
  transition: color 0.2s;
}
.insta-handle:hover { color: var(--gold-dark); }

/* ── FOOTER ── */
footer {
  background: var(--ink); padding: 3rem 4rem 2rem;
  display: flex; flex-direction: column; gap: 2rem;
}
.footer-top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 2rem; border-bottom: 1px solid oklch(30% 0.03 78);
}
.footer-logo {
  font-family: 'Cormorant', serif; font-size: 1.8rem;
  font-weight: 300; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold-light);
}
.footer-links {
  display: flex; gap: 2rem; list-style: none;
}
.footer-links a {
  font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: oklch(60% 0.03 78); text-decoration: none; transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
}
.footer-copy {
  font-size: 0.65rem; color: oklch(45% 0.03 78); letter-spacing: 0.1em;
}

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--ink); color: var(--white);
  padding: 0.8rem 1.8rem; z-index: 999;
  font-size: 0.72rem; letter-spacing: 0.12em;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ── MOBILE MENU ── */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 0.4rem;
  color: var(--ink);
}
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 99;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2rem;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: 'Cormorant', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--ink); text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-menu a:hover { color: var(--gold-dark); }
.mobile-menu-line {
  width: 40px; height: 1px; background: var(--gold);
}
.mobile-menu-cta {
  margin-top: 1rem;
  font-family: 'Raleway', sans-serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.2em !important; text-transform: uppercase;
  padding: 0.9rem 2rem; border: 1px solid var(--gold);
}

/* ── TABLET ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  nav.scrolled { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; align-items: center; }
  .nav-cart { padding: 0; }
  section { padding: 4rem 1.5rem !important; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .about-section { grid-template-columns: 1fr; }
  .about-img { min-height: 240px; }
  .about-content { padding: 3rem 2rem; }
  .quality-grid { grid-template-columns: 1fr; gap: 1rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { padding: 4rem 1.5rem !important; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { flex-direction: column; gap: 1.5rem; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 1rem; }
  .strip { gap: 1.2rem; flex-wrap: wrap; padding: 1rem; }
  footer { padding: 2.5rem 1.5rem 2rem; }
}

/* ── MOBILE ── */
@media (max-width: 600px) {
  nav { padding: 0.9rem 1.2rem; }
  .nav-logo { font-size: 1.3rem; letter-spacing: 0.2em; }
  .nav-cart span:not(.cart-badge) { display: none; }
  .hero { padding: 6rem 1.2rem 4rem; }
  .hero-logo { height: 72px; margin-bottom: 1.25rem; }
  .hero-eyebrow { font-size: 0.6rem; letter-spacing: 0.25em; }
  .hero-title { font-size: 4rem; letter-spacing: 0.05em; }
  .hero-brand-sub { font-size: 1.05rem; letter-spacing: 0.35em; margin: -0.4rem 0 2rem; }
  .hero-sub { font-size: 0.82rem; padding: 0 1rem; }
  .hero-cta { padding: 0.85rem 2rem; font-size: 0.65rem; }
  .hero-scroll { bottom: 1.5rem; }
  .strip { padding: 0.8rem 1rem; gap: 0.8rem; }
  .strip-item { font-size: 0.55rem; letter-spacing: 0.18em; }
  .strip-dot { display: none; }
  section { padding: 3.5rem 1rem !important; }
  .section-title { font-size: 2rem; }
  .catalog-filters { gap: 0.3rem; padding: 0 1rem; }
  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.6rem; letter-spacing: 0.1em; }
  .product-grid { grid-template-columns: 1fr; gap: 1rem; }
  .product-card { box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
  .product-overlay { display: none; }
  .product-name { font-size: 1.25rem; }
  .product-desc { font-size: 0.78rem; }
  .product-price { font-size: 1.05rem; }
  .whatsapp-btn { padding: 0.55rem 0.9rem; font-size: 0.6rem; }
  .about-content { padding: 2.5rem 1.5rem; }
  .about-content .section-title { font-size: 1.8rem; }
  .about-stats { gap: 1.5rem; flex-wrap: wrap; }
  .stat-num { font-size: 2rem; }
  .quality-item { padding: 2rem 1.5rem; }
  .contact-section { padding: 3.5rem 1rem !important; }
  .contact-inner { gap: 2.5rem; }
  .form-group input, .form-group textarea, .form-group select { font-size: 0.85rem; padding: 0.9rem; }
  .submit-btn { padding: 1.1rem; font-size: 0.7rem; }
  .whatsapp-direct { padding: 1rem 1.5rem; font-size: 0.65rem; width: 100%; justify-content: center; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
  .footer-logo { font-size: 1.4rem; letter-spacing: 0.2em; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
  .cart-panel { width: 100vw; }
  .cart-header { padding: 1.5rem; }
  .cart-items { padding: 1rem 1.5rem; }
  .cart-footer { padding: 1.2rem 1.5rem 1.5rem; }
}

/* ── EXTRA SMALL ── */
@media (max-width: 380px) {
  .hero-logo { height: 60px; }
  .hero-title { font-size: 3.2rem; }
  .hero-brand-sub { font-size: 0.95rem; }
  .section-title { font-size: 1.7rem; }
  .about-stats { justify-content: center; }
}
