:root {
  --bg: #f5efe6;
  --surface: #fffaf2;
  --surface-2: #efe3d2;
  --text: #17120d;
  --muted: #71675b;
  --dark: #0f0f0f;
  --dark-2: #1d1b18;
  --accent: #b9802a;
  --accent-2: #f4d58b;
  --green: #128c4a;
  --danger: #b42318;
  --border: rgba(23, 18, 13, 0.12);
  --shadow: 0 24px 70px rgba(23, 18, 13, 0.12);
  --shadow-dark: 0 24px 80px rgba(0, 0, 0, 0.26);
  --radius: 28px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.drawer-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.top-promo {
  min-height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: var(--dark);
  color: #fff;
  font-size: 0.9rem;
  text-align: center;
}

.top-promo span {
  color: rgba(255, 255, 255, 0.72);
}

.top-promo strong {
  color: var(--accent-2);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 239, 230, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--dark);
  color: var(--accent-2);
  box-shadow: 0 12px 30px rgba(15, 15, 15, 0.2);
}

.brand-text {
  font-size: 1.02rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links a,
.cart-link,
.nav-action {
  color: var(--text);
  text-decoration: none;
  font-weight: 850;
  border: 0;
  background: transparent;
  padding: 0;
}

.nav-links a:hover,
.cart-link:hover,
.nav-action:hover {
  color: var(--accent);
}

.cart-link {
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.48);
}

#cartBadge,
#floatingCartCount {
  background: var(--dark);
  color: #fff;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  font-size: 0.78rem;
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 11px;
}

.menu-button span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
  margin: 5px 0;
}

.hero {
  position: relative;
  min-height: calc(100svh - 112px);
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
  color: #fff;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(244, 213, 139, 0.2), transparent 32%),
    radial-gradient(circle at 78% 10%, rgba(185, 128, 42, 0.22), transparent 32%),
    linear-gradient(120deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.5)),
    url('/assets/hero-store.svg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
  padding-block: 82px;
}

.eyebrow {
  margin: 0;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.dark-eyebrow {
  color: var(--accent);
}

.hero h1 {
  margin: 14px 0 20px;
  max-width: 780px;
  font-size: clamp(3.2rem, 8vw, 6.9rem);
  line-height: 0.88;
  letter-spacing: -0.09em;
  text-transform: uppercase;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 0 34px;
}

.hero-actions,
.cart-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent-2);
  color: #16110a;
  box-shadow: 0 16px 34px rgba(244, 213, 139, 0.25);
}

.btn-primary:hover {
  background: #ffe2a0;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-light {
  background: #fff;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.btn-dark {
  width: 100%;
  background: var(--dark);
  color: #fff;
}

.btn-dark:hover {
  background: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.hero-showcase {
  display: grid;
  gap: 18px;
}

.showcase-card,
.mini-products article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-dark);
  overflow: hidden;
}

.main-product {
  padding: 18px;
  position: relative;
}

.main-product img {
  width: 100%;
  height: min(52vh, 420px);
  object-fit: cover;
  border-radius: 22px;
  background: #f0e4d2;
}

.main-product div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.main-product p {
  margin: 0;
  font-weight: 850;
}

.main-product strong {
  color: var(--accent-2);
}

.product-badge,
.product-ribbon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  background: var(--dark);
  color: var(--accent-2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.mini-products {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-products article {
  padding: 12px;
}

.mini-products img {
  height: 150px;
  width: 100%;
  object-fit: cover;
  border-radius: 18px;
  background: #f0e4d2;
}

.mini-products span {
  display: block;
  margin-top: 10px;
  font-weight: 900;
  color: #fff;
}

.service-strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-inline: 1px solid var(--border);
}

.service-grid div {
  background: var(--surface);
  padding: 24px;
}

.service-grid strong {
  display: block;
  font-size: 0.98rem;
}

.service-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding-block: 90px;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.split-heading {
  max-width: none;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: end;
  gap: 28px;
  text-align: left;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.7;
  margin: 16px 0 0;
}

.department-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.department-card {
  min-height: 360px;
  padding: 34px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}

.department-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.76));
}

.department-card>* {
  position: relative;
  z-index: 1;
}

.department-card span {
  font-weight: 900;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.department-card h3 {
  margin: 10px 0 24px;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 560px;
}

.department-card .btn {
  align-self: flex-start;
}

.department-men {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)), url('/assets/producto-demo-2.svg');
}

.department-women {
  background-image: linear-gradient(120deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.22)), url('/assets/producto-demo-3.svg');
}

.lookbook-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 22px;
}

.lookbook-card {
  min-height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  padding: 28px;
  box-shadow: var(--shadow);
}

.big-card {
  grid-row: span 2;
  padding: 0;
  background: var(--dark);
  color: #fff;
}

.big-card img {
  width: 100%;
  height: 100%;
  min-height: 544px;
  object-fit: cover;
  opacity: 0.9;
}

.big-card div {
  position: absolute;
  inset: auto 28px 28px 28px;
}

.lookbook-card span {
  color: var(--accent-2);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.lookbook-card h3 {
  margin: 10px 0 18px;
  font-size: clamp(1.7rem, 3.2vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.lookbook-card a,
.lookbook-card button {
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  font-weight: 950;
  text-decoration: underline;
}

.dark-card {
  background: var(--dark);
  color: #fff;
}

.light-card {
  background: var(--surface);
}

.light-card span {
  color: var(--accent);
}

.catalog-section {
  background: var(--surface-2);
  border-block: 1px solid var(--border);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 16px;
}

.sidebar-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 12px 32px rgba(23, 18, 13, 0.08);
}

.sidebar-block h3 {
  margin: 0 0 12px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.department-filters,
.subcategory-list {
  display: grid;
  gap: 9px;
}

.filter-button,
.category-button {
  width: 100%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.54);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: var(--text);
  font-weight: 900;
  text-align: left;
}

.filter-button small,
.category-button small {
  color: var(--muted);
  font-weight: 800;
}

.filter-button.active,
.category-button.active {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}

.filter-button.active small,
.category-button.active small {
  color: rgba(255, 255, 255, 0.66);
}

.filter-button.subtle {
  background: transparent;
}

.shop-content {
  min-width: 0;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 250px;
  gap: 16px;
  margin-bottom: 18px;
}

.search-box,
.sort-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 12px 14px;
  display: grid;
  gap: 6px;
  box-shadow: 0 10px 24px rgba(23, 18, 13, 0.06);
}

.search-box span,
.sort-box span,
.size-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 900;
  color: var(--muted);
}

.search-box input,
.sort-box select,
.size-select {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-weight: 800;
}

.mobile-filter-row {
  display: none;
}

.category-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 2px 0 10px;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-scroll .category-button {
  flex: 0 0 auto;
  width: auto;
  white-space: nowrap;
  min-width: max-content;
}

.catalog-feedback {
  min-height: 28px;
  margin: 8px 0 18px;
  color: var(--muted);
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 38px rgba(23, 18, 13, 0.09);
  min-width: 0;
}

.product-image-button {
  position: relative;
  width: 100%;
  border: 0;
  padding: 0;
  background: #eadbc7;
  overflow: hidden;
}

.product-image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  transition: transform .35s ease;
}

.product-image-button:hover .product-image {
  transform: scale(1.045);
}

.quick-view {
  position: absolute;
  inset: auto 14px 14px 14px;
  display: grid;
  place-items: center;
  min-height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font-weight: 950;
  opacity: 0;
  transform: translateY(8px);
  transition: .2s ease;
}

.product-image-button:hover .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.product-ribbon {
  left: 14px;
  top: 14px;
  font-size: 0.68rem;
}

.product-body {
  padding: 18px;
}

.product-topline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product-department,
.product-category {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(185, 128, 42, 0.1);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-category {
  background: rgba(23, 18, 13, 0.07);
  color: var(--muted);
}

.product-name {
  margin: 0;
  min-height: 48px;
  font-size: 1.12rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.product-description {
  color: var(--muted);
  min-height: 42px;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 10px 0 0;
}

.product-price {
  margin: 14px 0;
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.size-label {
  display: grid;
  gap: 7px;
  margin-bottom: 12px;
}

.size-select {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  color: var(--text);
}

.product-card.sold-out {
  opacity: 0.62;
}

.product-card.sold-out .btn-dark {
  background: #76706a;
  cursor: not-allowed;
}

.contact-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: var(--shadow-dark);
}

.contact-card h2 {
  margin: 8px 0 12px;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.contact-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
  max-width: 720px;
  line-height: 1.7;
}

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 500;
  pointer-events: none;
  opacity: 0;
  transition: opacity .2s ease;
}

.cart-drawer.open {
  pointer-events: auto;
  opacity: 1;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.52);
}

.cart-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 460px);
  height: 100%;
  background: var(--surface);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.26);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(102%);
  transition: transform .25s ease;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-header,
.cart-footer {
  padding: 22px;
  border-bottom: 1px solid var(--border);
}

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-header h2 {
  margin: 6px 0 0;
  letter-spacing: -0.06em;
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  font-size: 1.6rem;
  line-height: 1;
}

.cart-items {
  overflow: auto;
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
}

.empty-cart {
  padding: 22px;
  border: 1px dashed var(--border);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

.cart-item {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  padding: 10px;
}

.cart-item img {
  width: 84px;
  height: 94px;
  object-fit: cover;
  border-radius: 14px;
  background: #eadbc7;
}

.cart-item h3 {
  margin: 0 0 5px;
  font-size: 0.96rem;
}

.cart-item p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.remove-item {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(180, 35, 24, 0.09);
  color: var(--danger);
  font-weight: 950;
}

.cart-footer {
  border-top: 1px solid var(--border);
  border-bottom: 0;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.cart-total span {
  color: var(--muted);
  font-weight: 800;
}

.cart-total strong {
  font-size: 1.6rem;
  letter-spacing: -0.04em;
}

.cart-actions .btn {
  flex: 1;
}

.floating-cart {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 250;
  border: 0;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  min-height: 56px;
  padding: 10px 17px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 16px 34px rgba(18, 140, 74, 0.32);
  font-weight: 950;
}

.image-dialog {
  width: min(92vw, 760px);
  border: 0;
  border-radius: 24px;
  padding: 0;
  background: transparent;
}

.image-dialog::backdrop {
  background: rgba(0, 0, 0, 0.72);
}

.image-dialog img {
  width: 100%;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 24px;
  background: #fff;
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 1;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    max-width: 620px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    display: none;
  }

  .mobile-filter-row {
    display: grid;
    gap: 10px;
    margin: 0 0 8px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 8px);
    display: grid;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 14px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: .2s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a,
  .nav-action,
  .cart-link {
    padding: 12px 10px;
    text-align: left;
    justify-content: space-between;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 54px;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 17vw, 5.4rem);
  }

  .split-heading {
    grid-template-columns: 1fr;
  }

  .department-grid {
    grid-template-columns: 1fr;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
  }

  .big-card img {
    min-height: 420px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .contact-card {
    grid-template-columns: 1fr;
  }

  .contact-card .btn {
    justify-self: start;
  }
}

@media (max-width: 620px) {

  /* Base móvil */
  body {
    overflow-x: hidden;
  }

  .container {
    width: min(100% - 24px, var(--container));
  }

  .top-promo {
    flex-direction: column;
    gap: 2px;
    padding: 7px 12px;
    font-size: 0.74rem;
    line-height: 1.25;
  }

  .site-header {
    top: 0;
  }

  .nav {
    min-height: 58px;
    gap: 10px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 24px;
    border-radius: 999px;
    font-size: 0.62rem;
  }

  .brand-text {
    max-width: 195px;
    font-size: 0.74rem;
    line-height: 1.05;
  }

  .menu-button {
    display: block;
    flex: 0 0 auto;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    padding: 8px;
    background: rgba(255, 250, 242, 0.96);
  }

  .menu-button span {
    height: 1.5px;
    margin: 4px 0;
  }

  .nav-links {
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    border-radius: 18px;
    padding: 12px;
  }

  .nav-links a,
  .nav-action,
  .cart-link {
    padding: 10px 8px;
    font-size: 0.86rem;
  }

  /* Hero y secciones */
  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-block: 44px;
    gap: 26px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 15vw, 4.1rem);
    line-height: 0.94;
  }

  .hero-copy {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-showcase {
    display: none;
  }

  .section {
    padding-block: 44px;
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-heading h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.9rem;
    line-height: 1.55;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid div {
    padding: 16px;
  }

  .department-grid,
  .lookbook-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .department-card {
    min-height: 230px;
    padding: 22px;
    border-radius: 22px;
  }

  .lookbook-card {
    padding: 20px;
    border-radius: 22px;
  }

  .big-card {
    min-height: 330px;
  }

  .big-card img {
    min-height: 330px;
  }

  .big-card div {
    inset: auto 20px 20px 20px;
  }

  /* Catálogo móvil */
  .catalog-section {
    padding-top: 34px;
  }

  .catalog-layout {
    display: block;
  }

  .shop-sidebar {
    display: none;
  }

  .mobile-filter-row {
    display: grid;
    gap: 10px;
    margin: 0 0 10px;
  }

  .category-scroll {
    padding-bottom: 8px;
  }

  .category-scroll .category-button,
  .category-button,
  .filter-button {
    border-radius: 999px;
    padding: 9px 12px;
    font-size: 0.76rem;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 12px;
  }

  .search-box,
  .sort-box {
    border-radius: 15px;
    padding: 9px 11px;
  }

  .search-box span,
  .sort-box span {
    display: none;
  }

  .search-box input,
  .sort-box select {
    height: 28px;
    font-size: 0.82rem;
  }

  .catalog-feedback {
    min-height: auto;
    margin: 8px 0 14px;
    font-size: 0.78rem;
  }

  /* Productos 2 en 2, estilo tienda real */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }

  .product-card {
    border-radius: 16px;
    overflow: hidden;
    min-width: 0;
    box-shadow: 0 12px 24px rgba(23, 18, 13, 0.08);
  }

  .product-card:hover {
    transform: none;
  }

  .product-image-button {
    position: relative;
    width: 100%;
    display: block;
    border: 0;
    padding: 0;
    background: #eadbc7;
    overflow: hidden;
  }

  .product-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
  }

  .product-image-button:hover .product-image {
    transform: none;
  }

  .quick-view {
    display: none;
  }

  .product-ribbon {
    left: 7px;
    top: 7px;
    z-index: 2;
    font-size: 0.5rem;
    line-height: 1;
    padding: 4px 7px;
    border-radius: 999px;
    letter-spacing: 0.06em;
  }

  .product-body {
    padding: 9px;
  }

  .product-topline {
    display: none;
  }

  .product-name {
    min-height: 30px;
    font-size: 0.68rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
  }

  .product-description {
    display: -webkit-box;
    min-height: 0;
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 0.62rem;
    line-height: 1.25;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-price {
    margin: 8px 0;
    font-size: 0.88rem;
    letter-spacing: -0.03em;
  }

  .size-label {
    gap: 4px;
    margin-bottom: 8px;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
  }

  .size-select {
    min-height: 30px;
    padding: 5px 8px;
    border-radius: 9px;
    font-size: 0.68rem;
  }

  .product-card .btn-dark,
  .add-button {
    width: 100%;
    min-height: 32px;
    padding: 7px 8px;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 950;
  }

  .product-card.sold-out {
    opacity: 0.62;
  }

  /* Contacto y carrito */
  .contact-card {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 22px;
  }

  .contact-card .btn {
    width: 100%;
  }

  .cart-panel {
    width: 100%;
    max-width: 100%;
  }

  .cart-header,
  .cart-footer {
    padding: 18px;
  }

  .cart-items {
    padding: 14px;
  }

  .cart-item {
    grid-template-columns: 70px 1fr auto;
    gap: 10px;
  }

  .cart-item img {
    width: 70px;
    height: 82px;
  }

  .cart-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .floating-cart {
    right: 14px;
    bottom: 14px;
    min-height: 48px;
    padding: 8px 14px;
  }

  .image-dialog {
    width: 94vw;
  }

  .image-dialog img {
    max-height: 80vh;
  }
}