/* ════════════════════════════════════
   TOPBAR
════════════════════════════════════ */
.topbar {
  background: #f5e6e2;
  color: #7a3045;
  font-size: 11px;
  letter-spacing: 0.5px;
  padding: 7px 0;
  border-bottom: 1px solid #e8cfc9;
}
.topbar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.topbar-phone { color: var(--burg); font-weight: 600; }
.topbar-center { color: #8a4a5a; font-weight: 500; letter-spacing: 1px; }
.topbar-social { display: flex; align-items: center; gap: 12px; }
.topbar-icon { color: var(--burg); transition: opacity 0.2s; line-height: 0; }
.topbar-icon:hover { opacity: 0.7; }

/* ════════════════════════════════════
   HERO WRAP — header floats over image
════════════════════════════════════ */
.hero-wrap { position: relative; }

/* ════════════════════════════════════
   HEADER
════════════════════════════════════ */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 600;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
  padding: 18px 0;
  box-shadow: none;
}
.site-header--solid {
  position: relative;
  background: #1a1a1a;
}
.site-header--solid .logo-img { height: 70px; }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo { line-height: 0; display: block; text-align: center; }
.logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: opacity 0.2s;
}
.logo:hover .logo-img { opacity: 0.85; }

/* ════════════════════════════════════
   MAIN NAV (page links — index only)
════════════════════════════════════ */
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.main-nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.main-nav-link:hover,
.main-nav-link.active {
  color: #fff;
  border-bottom-color: rgba(255,255,255,0.7);
}

.header-left {
  display: flex;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: flex-end;
}

.cart-btn {
  position: relative;
  color: rgba(255,255,255,0.85);
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.cart-btn:hover { color: #fff; }
.cart-count {
  background: var(--burg);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
}

/* ════════════════════════════════════
   CATEGORY NAVBAR (productos.html)
════════════════════════════════════ */
.site-nav {
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
}
.site-nav .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.nav-link {
  display: block;
  padding: 13px 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: #fff; border-bottom-color: var(--gold); }

/* ════════════════════════════════════
   MOBILE MENU
════════════════════════════════════ */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 22px;
  padding: 4px;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: #1a1a1a;
  position: fixed;
  top: 0; left: 0;
  width: 280px; height: 100%;
  z-index: 900;
  padding: 60px 0 30px;
  transform: translateX(-100%);
  transition: transform 0.35s ease;
}
.mobile-nav.open { transform: translateX(0); display: flex; }
.mobile-nav .nav-link { color: #ccc; border-bottom: 1px solid #2a2a2a; padding: 14px 28px; }
.mobile-nav .nav-link:hover { color: var(--gold); border-bottom-color: #2a2a2a; }
.mobile-close {
  position: absolute; top: 18px; right: 18px;
  background: none; border: none; color: #777; font-size: 22px;
}
.overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 800;
}
.overlay.open { display: block; }

/* ════════════════════════════════════
   HERO — 2-column split layout
════════════════════════════════════ */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
  overflow: hidden;
}

.hero-left {
  background: #180b10;
  padding: 140px 56px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-right {
  position: relative;
  overflow: hidden;
}
.hero-right img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 8s ease;
}
.hero-right:hover img { transform: scale(1.04); }

/* Difuminado izquierda → imagen */
.hero-right::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 200px;
  background: linear-gradient(to right, #180b10 0%, rgba(24,11,16,0.6) 40%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

/* Difuminado desde el lado izquierdo también */
.hero-left::after {
  content: '';
  position: absolute;
  right: -60px; top: 0; bottom: 0;
  width: 120px;
  background: linear-gradient(to right, #180b10, transparent);
  z-index: 2;
  pointer-events: none;
}

/* Logo blanco en hero */
.hero-logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 20px;
  opacity: 0.93;
  align-self: flex-start;
}

.hero-eyebrow {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 6px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-title {
  font-family: var(--ff-serif);
  color: #fff;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.hero-divider-line {
  display: block;
  width: 50px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.hero-divider-gem {
  color: var(--gold);
  font-size: 12px;
}
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 32px;
}

/* Trust items inside hero */
.hero-trust {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-trust-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  background: rgba(255,255,255,0.04);
}
.hero-trust-title {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2px;
}
.hero-trust-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
}

/* Hero CTA */
.hero-cta {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  background: transparent;
  padding: 13px 32px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  transition: all 0.25s;
  align-self: flex-start;
}
.hero-cta:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* ════════════════════════════════════
   SECTION TITLE / ORNAMENT
════════════════════════════════════ */
.section-title {
  font-family: var(--ff-serif);
  font-size: 36px;
  text-align: center;
  color: var(--text);
  margin-bottom: 8px;
  font-weight: 400;
}
.section-title span { color: var(--burg); font-style: italic; }

.section-ornament {
  text-align: center;
  font-size: 12px;
  color: #b8848c;
  letter-spacing: 4px;
  margin-bottom: 10px;
}
.ornament-heart { font-size: 14px; color: var(--burg); opacity: 0.7; }

.section-sub {
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 44px;
}

/* ════════════════════════════════════
   CATEGORY GRID
════════════════════════════════════ */
.cat-section { padding: 70px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

.cat-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
  display: block;
  background: #1a0d14;
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.cat-card:hover img { transform: scale(1.07); }

.cat-card-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(0deg, rgba(15,5,10,.92) 0%, rgba(15,5,10,.3) 70%, transparent 100%);
  padding: 14px 20px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: padding 0.3s;
}
.cat-card:hover .cat-card-overlay { padding-bottom: 26px; }

.cat-card-icon {
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.35);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  background: rgba(255,255,255,0.05);
  transition: border-color 0.2s, background 0.2s;
}
.cat-card:hover .cat-card-icon {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(180,145,90,0.08);
}

.cat-label {
  font-family: var(--ff-serif);
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
  line-height: 1.2;
}
.cat-eyebrow {
  font-size: 8px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  margin-bottom: 12px;
}
.cat-btn {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.85);
  background: transparent;
  padding: 6px 18px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  transition: all 0.25s;
  cursor: pointer;
}
.cat-btn:hover,
.cat-card:hover .cat-btn {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

.cat-card--all { height: 320px; }

/* ════════════════════════════════════
   PRODUCT CARD
════════════════════════════════════ */
.products-section { padding: 70px 0; background: var(--cream); }

.tabs {
  display: flex;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
  gap: 0;
}
.tab-btn {
  background: none;
  border: none;
  padding: 13px 26px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all var(--transition);
}
.tab-btn.active, .tab-btn:hover { color: var(--burg); border-bottom-color: var(--burg); }

.product-card {
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: box-shadow var(--transition);
}
.product-card:hover { box-shadow: var(--shadow-md); }
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--cream-dark);
}
.product-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }

.product-badge { position: absolute; top: 10px; left: 10px; z-index: 1; }

.product-actions {
  position: absolute;
  bottom: 10px; right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(12px);
  transition: all var(--transition);
  z-index: 2;
}
.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(0);
}
.action-icon {
  width: 36px; height: 36px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  color: var(--text-mid);
  transition: all var(--transition);
}
.action-icon:hover { background: var(--burg); color: #fff; border-color: var(--burg); }

.product-body { padding: 14px 16px; }
.product-name { font-size: 13px; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.product-price { font-size: 15px; font-weight: 700; color: var(--burg); }
.product-price .old { font-weight: 400; font-size: 12px; color: var(--text-light); text-decoration: line-through; margin-left: 7px; }
.product-rating { display: flex; gap: 2px; margin-bottom: 6px; font-size: 12px; color: var(--gold); }

.products-cta { text-align: center; margin-top: 44px; }

/* ════════════════════════════════════
   PROMO BANNER
════════════════════════════════════ */
.promo-section { padding: 0 0 70px; background: var(--cream); }
.promo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.promo-card {
  position: relative;
  height: 320px;
  overflow: hidden;
  cursor: pointer;
}
.promo-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.promo-card:hover img { transform: scale(1.05); }
.promo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,8,14,.8) 0%, rgba(20,8,14,.05) 60%);
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
}
.promo-overlay h3 { font-family: var(--ff-serif); color: #fff; font-size: 26px; margin-bottom: 6px; }
.promo-overlay p { color: rgba(255,255,255,.8); font-size: 13px; margin-bottom: 18px; }

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.site-footer { background: #1a1a1a; color: #aaa; }
.footer-main { padding: 60px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-desc { font-size: 12px; line-height: 1.9; color: #777; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.footer-social a {
  width: 32px; height: 32px;
  border: 1px solid #333;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: #666;
  transition: all var(--transition);
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 {
  color: #fff; font-size: 10px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #777; font-size: 12px; transition: color var(--transition); }
.footer-col ul li a:hover { color: #fff; }
.footer-contact { font-size: 12px; line-height: 2.2; color: #777; }
.footer-contact strong { color: var(--gold); }
.footer-bottom {
  background: #111;
  padding: 16px 0;
  border-top: 1px solid #2a2a2a;
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: #555;
}
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-pill {
  background: #222; border: 1px solid #333;
  padding: 3px 10px; font-size: 10px; color: #666;
  border-radius: 3px;
}

/* ════════════════════════════════════
   PRODUCT PAGE — SIDEBAR FILTERS
════════════════════════════════════ */
.shop-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 32px;
  padding: 40px 0 70px;
  align-items: start;
}
.filters-sidebar { background: #fff; border: 1px solid var(--border); }
.filter-group { border-bottom: 1px solid var(--border); }
.filter-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 18px; cursor: pointer;
}
.filter-header h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; }
.filter-header span { font-size: 14px; color: var(--text-light); transition: transform var(--transition); }
.filter-header.open span { transform: rotate(180deg); }
.filter-body { padding: 8px 18px 16px; display: none; }
.filter-body.open { display: block; }
.filter-check {
  display: flex; align-items: center; gap: 10px;
  padding: 5px 0; cursor: pointer; font-size: 13px; color: var(--text-mid);
}
.filter-check input[type="checkbox"] { accent-color: var(--burg); width: 14px; height: 14px; }
.price-range { display: flex; flex-direction: column; gap: 10px; }
.price-range input[type="range"] { accent-color: var(--burg); width: 100%; }
.price-vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--text-mid); }
.swatch-grid { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.swatch {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color var(--transition);
}
.swatch.active, .swatch:hover { border-color: var(--text); }
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 22px; padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.result-count { font-size: 13px; color: var(--text-mid); }
.sort-select {
  border: 1px solid var(--border); padding: 7px 12px;
  font-size: 12px; color: var(--text); outline: none;
  background: #fff;
}

/* ════════════════════════════════════
   PRODUCT DETAIL
════════════════════════════════════ */
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  padding: 50px 0 70px;
  align-items: start;
}
.detail-gallery .main-img {
  aspect-ratio: 3/4; background: var(--cream-dark); overflow: hidden; margin-bottom: 12px;
}
.detail-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; }
.thumb-row { display: flex; gap: 10px; }
.thumb {
  width: 70px; height: 90px; overflow: hidden; background: var(--cream-dark);
  border: 2px solid transparent; cursor: pointer; flex-shrink: 0;
  transition: border-color var(--transition);
}
.thumb.active, .thumb:hover { border-color: var(--burg); }
.thumb img { width: 100%; height: 100%; object-fit: cover; }
.detail-info .product-brand { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); margin-bottom: 8px; }
.detail-info h1 { font-family: var(--ff-serif); font-size: 30px; margin-bottom: 12px; line-height: 1.2; }
.detail-price-main { font-size: 26px; font-weight: 700; color: var(--burg); margin-bottom: 4px; }
.detail-price-main .old { font-size: 16px; font-weight: 400; color: var(--text-light); text-decoration: line-through; margin-left: 10px; }
.detail-desc { font-size: 14px; color: var(--text-mid); line-height: 1.8; margin: 20px 0; border-top: 1px solid var(--border); padding-top: 18px; }
.size-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 10px; }
.size-grid { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.size-btn {
  padding: 7px 14px; border: 1px solid var(--border);
  font-size: 12px; background: #fff; color: var(--text);
  transition: all var(--transition);
}
.size-btn.active, .size-btn:hover { border-color: var(--burg); color: var(--burg); }
.qty-row { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.qty-control { display: flex; border: 1px solid var(--border); }
.qty-btn { width: 36px; height: 36px; background: none; border: none; font-size: 18px; color: var(--text-mid); }
.qty-btn:hover { background: var(--cream); }
.qty-val { width: 40px; height: 36px; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 14px; }
.add-to-cart-btn { width: 100%; padding: 15px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: var(--burg); color: #fff; border: none; transition: background var(--transition); margin-bottom: 12px; }
.add-to-cart-btn:hover { background: var(--burg-dark); }
.wishlist-btn { width: 100%; padding: 14px; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; background: transparent; color: var(--text-mid); border: 1px solid var(--border); transition: all var(--transition); }
.wishlist-btn:hover { border-color: var(--burg); color: var(--burg); }

/* ════════════════════════════════════
   CART PAGE
════════════════════════════════════ */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  padding: 40px 0 70px;
  align-items: start;
}
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 10px 14px; border-bottom: 2px solid var(--border); color: var(--text-mid); text-align: left; }
.cart-table td { padding: 16px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; font-size: 13px; }
.cart-item-img { width: 70px; height: 90px; object-fit: cover; flex-shrink: 0; }
.cart-item-name { font-size: 13px; color: var(--text); margin-bottom: 4px; }
.cart-item-meta { font-size: 11px; color: var(--text-light); }
.cart-remove { background: none; border: none; color: var(--text-light); font-size: 18px; cursor: pointer; }
.cart-remove:hover { color: #c04040; }
.order-summary {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 28px;
}
.order-summary h3 { font-family: var(--ff-serif); font-size: 20px; margin-bottom: 20px; }
.summary-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 12px; color: var(--text-mid); }
.summary-row.total { font-size: 16px; font-weight: 700; color: var(--text); border-top: 1px solid var(--border); padding-top: 14px; margin-top: 8px; }
.checkout-btn { width: 100%; margin-top: 20px; }

/* ════════════════════════════════════
   WHATSAPP FLOTANTE
════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 56px; height: 56px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(0,0,0,0.3);
}
.whatsapp-float svg { width: 30px; height: 30px; }

/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1024px) {
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .shop-layout { grid-template-columns: 200px 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .hero-left { padding: 130px 36px 50px 40px; }
}

@media (max-width: 768px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-left { padding: 100px 30px 50px; }
  .hero-left::after { display: none; }
  .hero-right { height: 300px; }
  .hero-title { font-size: 38px; }
  .hero-trust { gap: 12px; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .promo-grid { grid-template-columns: 1fr; }
  .shop-layout { grid-template-columns: 1fr; }
  .filters-sidebar { display: none; }
  .detail-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .menu-toggle { display: block; }
  .main-nav { display: none; }
  .site-header .container { grid-template-columns: auto 1fr auto; }
  .topbar-center { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  /* Nav de categorías en mobile — scroll horizontal */
  .site-nav .container {
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 12px;
    gap: 0;
  }
  .site-nav .container::-webkit-scrollbar { display: none; }
  .nav-link { padding: 12px 14px; font-size: 10px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 30px; }
  .hero-left { padding: 90px 20px 40px; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .tabs { flex-wrap: wrap; }
  .about-grid { grid-template-columns: 1fr; }
  .about-hero { padding: 100px 0 40px; }

  /* Header solid en mobile */
  .site-header--solid { padding: 10px 0; }
  .site-header--solid .logo-img { height: 50px; }
  .cart-btn span:not(.cart-count) { display: none; }
}

/* ════════════════════════════════════
   SOBRE MÍ
════════════════════════════════════ */
.about-hero {
  background: #180b10;
  padding: 130px 0 60px;
  text-align: center;
}
.about-hero-title {
  font-family: var(--ff-serif);
  font-size: 48px;
  color: #fff;
  margin-bottom: 12px;
}
.about-hero-title em {
  color: var(--gold);
  font-style: italic;
}
.about-hero-sub {
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}

.about-section {
  padding: 80px 0 100px;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  align-items: start;
}

.about-image-wrap {
  position: relative;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: #e8d9d1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #d4b9ad;
}
.about-years-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--burg);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.about-years-number {
  display: block;
  font-family: var(--ff-serif);
  font-size: 42px;
  line-height: 1;
}
.about-years-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
  line-height: 1.4;
}

.about-eyebrow {
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 14px;
}
.about-title {
  font-family: var(--ff-serif);
  font-size: 36px;
  color: #1a0d14;
  line-height: 1.25;
  margin-bottom: 20px;
}
.about-title em {
  color: var(--burg);
  font-style: italic;
}
.about-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 24px;
}
.about-body {
  font-size: 15px;
  line-height: 1.8;
  color: #4a3038;
  margin-bottom: 18px;
}
.about-body strong {
  color: #1a0d14;
  font-weight: 700;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0 36px;
  padding: 28px;
  background: #fff;
  border-left: 3px solid var(--gold);
}
.about-value {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.about-value-icon {
  color: var(--gold);
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}
.about-value strong {
  display: block;
  font-size: 13px;
  color: #1a0d14;
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.about-value p {
  font-size: 13px;
  color: #7a6068;
  line-height: 1.5;
  margin: 0;
}

.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: background 0.2s;
}
.about-cta:hover { background: #1ebe59; }
