:root {
  --cream: #fbf8f3;
  --cream-2: #f1ebe0;
  --ink: #18160f;
  --ink-soft: #4a453c;
  --taupe: #cabfae;
  --taupe-line: #e2dac9;
  --accent: #c98a95;
  --danger: #b3402f;
  --success: #3b6d11;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  --nav-h: 72px;
  --radius: 2px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 10px;
}
.eyebrow--light { color: rgba(251,248,243,0.85); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  width: 100%;
}
.btn--primary { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.btn--primary:hover { background: transparent; color: var(--ink); }
.btn--ghost { background: transparent; color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn--whatsapp { background: var(--whatsapp); border-color: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); }
.btn--small { width: auto; padding: 9px 18px; font-size: 11px; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(251,248,243,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--taupe-line);
  z-index: 100;
}
.navbar__inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand__mark { height: 34px; width: auto; }
/* Estilo de "marca" para el nombre Synderella en cualquier parte del sitio
   (navbar, footer, etc.) — el tamaño de letra lo define cada lugar donde se usa. */
.brand__word {
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.brand .brand__word { font-size: 18px; }

.nav-links {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid var(--taupe-line);
  flex-direction: column;
  padding: 8px 20px 20px;
  gap: 4px;
  display: none;
}
.nav-links.is-open { display: flex; }
.nav-links a {
  padding: 14px 4px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--taupe-line);
}
.nav-links a:last-child { border-bottom: none; }
.nav-links a.active { color: var(--accent); }

.navbar__actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  padding: 6px;
  display: flex;
}
.cart-btn__count {
  position: absolute;
  top: -4px; right: -6px;
  background: var(--ink);
  color: var(--cream);
  font-size: 10px;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}
.cart-btn__count[data-empty="true"] { opacity: 0; }

.menu-toggle {
  background: none;
  border: none;
  cursor: pointer;
  width: 28px; height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(9.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9.5px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: var(--nav-h);
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--ink);
  overflow: hidden;
}
.hero--no-video {
  background: url('../assets/img/products/look-02-full.jpg') center 30% / cover no-repeat;
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.45);
}
.hero__content {
  position: relative;
  z-index: 1;
  color: var(--cream);
  padding: 0 24px;
  max-width: 640px;
}
.hero h1 {
  font-size: clamp(38px, 9vw, 68px);
  color: var(--cream);
  margin-bottom: 18px;
}
.hero__sub {
  font-size: 15px;
  color: rgba(251,248,243,0.88);
  max-width: 440px;
  margin: 0 auto 30px;
}
.hero .btn { width: auto; padding: 15px 38px; background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero .btn:hover { background: transparent; color: var(--cream); }

/* About */
.about {
  max-width: 620px;
  margin: 0 auto;
  padding: 90px 24px;
  text-align: center;
}
.about h2 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 20px; }
.about p { color: var(--ink-soft); font-size: 15px; }
.about__ig {
  display: inline-block;
  margin-top: 22px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

.policy-page { max-width: 640px; margin: 0 auto; padding: calc(var(--nav-h) + 50px) 24px 80px; }
.policy-page h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 8px; }
.policy-page__intro { color: var(--ink-soft); font-size: 15px; margin-bottom: 36px; }
.policy-page__item { padding: 20px 0; border-top: 1px solid var(--taupe-line); }
.policy-page__item:last-child { border-bottom: 1px solid var(--taupe-line); }
.policy-page__item h3 { font-size: 13px; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 8px; }
.policy-page__item p { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; margin: 0; }

/* Lookbook */
.lookbook { max-width: 1100px; margin: 0 auto; padding: 20px 24px 90px; text-align: center; }
.lookbook h2 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 10px; }
.lookbook__sub { color: var(--ink-soft); font-size: 14px; max-width: 440px; margin: 0 auto 40px; }

.look-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.look-card {
  display: block;
}
.look-card__image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--taupe-line);
  display: block;
}
.look-card__image-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.look-card:hover .look-card__image-wrap img { transform: scale(1.05); }
.look-card--placeholder {
  aspect-ratio: 1 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px dashed var(--taupe);
  color: var(--ink-soft);
  background: var(--cream-2);
}
.look-card--placeholder span { font-size: 11.5px; text-align: center; padding: 0 10px; }

/* Banner "ir a la tienda" en la portada */
.shop-banner {
  background: var(--ink); color: var(--cream);
  padding: 80px 24px; text-align: center;
}
.shop-banner h2 { color: var(--cream); font-size: clamp(26px, 5vw, 36px); margin-bottom: 12px; }
.shop-banner__sub { color: rgba(251,248,243,0.75); font-size: 14px; margin-bottom: 26px; }
.shop-banner .btn { width: auto; padding: 15px 38px; background: var(--cream); color: var(--ink); border-color: var(--cream); }
.shop-banner .btn:hover { background: transparent; color: var(--cream); }

/* Shop */
.shop { background: var(--cream-2); padding: 90px 24px; text-align: center; }
.shop--page { margin-top: var(--nav-h); }
.shop h2 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 24px; }

.cat-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.cat-tab {
  padding: 9px 20px; border: 1px solid var(--ink); border-radius: 20px;
  background: transparent; color: var(--ink);
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.cat-tab.sel { background: var(--ink); color: var(--cream); }
.cat-tab--offer { border-color: var(--accent); color: var(--accent); }
.cat-tab--offer.sel { background: var(--accent); border-color: var(--accent); color: var(--cream); }

.subcat-tabs { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px; margin: -24px 0 40px; }
.subcat-tab {
  padding: 6px 15px; border: 1px solid var(--taupe); border-radius: 20px;
  background: transparent; color: var(--ink-soft);
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.04em; text-transform: uppercase;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.subcat-tab.sel { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.subcat-tab--nested { font-size: 10px; padding: 5px 12px; opacity: 0.85; }

.empty-state { text-align: center; padding: 60px 20px; color: var(--ink-soft); }

.look-filter-banner {
  text-align: center; font-size: 13px; color: var(--ink-soft);
  padding: 10px 14px; margin: 0 0 18px; background: var(--cream-2); border-radius: var(--radius);
}
.look-filter-banner a { color: var(--accent); text-decoration: underline; }

.shop__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  text-align: left;
}
.product-card__image-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--taupe-line);
}
.product-card__image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__image-wrap img { transform: scale(1.04); }
.product-card__body { padding: 14px 2px 0; }
.product-card__name { font-size: 15px; font-weight: 500; margin-bottom: 4px; }
.product-card__material { font-size: 12px; color: var(--ink-soft); font-style: italic; margin-bottom: 14px; }

.price-block { margin-bottom: 6px; }
.price-block__transfer {
  font-family: var(--font-display); font-size: 19px; font-weight: 600;
  color: var(--ink); line-height: 1.25;
}
.price-block__tag {
  font-family: var(--font-sans); font-size: 10.5px; font-weight: 600;
  color: var(--accent); text-transform: uppercase; letter-spacing: 0.04em;
}
.price-block__card { font-size: 12.5px; color: var(--ink-soft); margin-top: 1px; }

.option-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-soft); margin-bottom: 8px; }
.size-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
.size-pill {
  min-width: 34px; padding: 6px 10px;
  border: 1px solid var(--taupe); border-radius: var(--radius);
  background: var(--cream); font-family: var(--font-sans); font-size: 12px;
  cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.size-pill.sel { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.size-measure { font-size: 11.5px; color: var(--accent); min-height: 14px; margin-bottom: 10px; }

.color-swatch-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.color-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid var(--taupe-line); padding: 0; cursor: pointer;
}
.color-swatch.sel { box-shadow: 0 0 0 2px var(--cream), 0 0 0 3.5px var(--ink); }

.stock-status { font-size: 12px; min-height: 16px; margin-bottom: 10px; }
.stock-status--ok { color: var(--success); }
.stock-status--bad { color: var(--danger); }

.product-card [data-role="add"]:disabled { opacity: 0.5; cursor: not-allowed; }

.mini-swatch { display: inline-block; width: 12px; height: 12px; border-radius: 50%; border: 1px solid var(--taupe-line); vertical-align: middle; margin-right: 4px; }
.cart-item__variant { font-size: 12px; color: var(--ink-soft); margin: 2px 0; }

/* Footer */
.footer { background: var(--ink); color: var(--cream); padding: 70px 24px 0; }
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer__logo { height: 90px; width: auto; filter: invert(1) brightness(1.6); margin-bottom: 14px; }
.footer__brand p { color: rgba(251,248,243,0.6); font-size: 13px; max-width: 260px; }
.footer__col h3 {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe);
  margin-bottom: 16px;
}
.footer__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(251,248,243,0.85);
  padding: 7px 0;
}
.footer__address { font-size: 13px; color: rgba(251,248,243,0.55); margin-top: 10px; }
.footer__bottom {
  border-top: 1px solid rgba(251,248,243,0.12);
  text-align: center;
  font-size: 12px;
  color: rgba(251,248,243,0.5);
  padding: 20px 0;
}

/* Cart drawer */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(20,18,14,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 200;
}
.cart-overlay.is-open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 100%;
  max-width: 400px;
  background: var(--cream);
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}
.cart-drawer.is-open { transform: translateX(0); }

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--taupe-line);
}
.cart-drawer__header h2 { font-size: 20px; }
.cart-drawer__close { background: none; border: none; cursor: pointer; color: var(--ink); padding: 4px; }

.cart-drawer__items { flex: 1; overflow-y: auto; padding: 10px 24px; }
.cart-drawer__empty { color: var(--ink-soft); font-size: 14px; padding: 40px 0; text-align: center; }

.cart-item { display: flex; gap: 12px; padding: 16px 0; border-bottom: 1px solid var(--taupe-line); }
.cart-item img { width: 64px; height: 78px; object-fit: cover; }
.cart-item__info { flex: 1; }
.cart-item__name { font-size: 13.5px; font-weight: 500; margin-bottom: 3px; }
.cart-item__price { font-size: 13px; color: var(--ink); margin-bottom: 2px; }
.cart-item__price strong { font-weight: 600; }
.cart-item__price-card { display: block; font-size: 11.5px; color: var(--ink-soft); margin-top: 1px; }
.cart-item__qty { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.cart-item__qty button {
  width: 22px; height: 22px;
  border: 1px solid var(--taupe);
  background: none;
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  border-radius: 50%;
}
.cart-item__remove {
  background: none; border: none; cursor: pointer;
  color: var(--ink-soft); font-size: 11px;
  text-decoration: underline;
  align-self: flex-start;
  padding: 0;
}

.cart-drawer__footer { padding: 18px 24px 26px; border-top: 1px solid var(--taupe-line); }
.cart-drawer__total { margin-bottom: 16px; }
.cart-drawer__total-row { display: flex; justify-content: space-between; }
.cart-drawer__total-row--transfer {
  font-family: var(--font-display); font-size: 20px; font-weight: 600; color: var(--ink);
}
.cart-drawer__total-row--card { font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }
.cart-drawer__footer .btn { margin-bottom: 10px; }
.cart-drawer__note { font-size: 13px; color: var(--ink-soft); text-align: center; margin-top: 10px; line-height: 1.5; }

/* Toast */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  font-size: 13px;
  padding: 12px 22px;
  border-radius: var(--radius);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 300;
}
.toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Vista ampliada de un look de la portada */
.look-lightbox {
  position: fixed; inset: 0;
  background: rgba(20,18,14,0.9);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  padding: 60px 24px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 220;
}
.look-lightbox.is-open { opacity: 1; pointer-events: auto; }
.look-lightbox img { max-width: 100%; max-height: 72vh; object-fit: contain; border-radius: 4px; }
.look-lightbox__close {
  position: absolute; top: 18px; right: 18px;
  background: var(--cream); border: none; border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); cursor: pointer;
}
.look-lightbox__cta { width: auto; padding: 13px 30px; }

/* Vista ampliada de producto (galería + lupa) */
.pv-overlay {
  position: fixed; inset: 0;
  background: rgba(20,18,14,0.75);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 210;
}
.pv-overlay.is-open { opacity: 1; pointer-events: auto; }

.pv-modal {
  position: fixed; top: 50%; left: 50%;
  transform: translate(-50%, -48%);
  width: 92%; max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 8px;
  padding: 20px;
  z-index: 211;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.pv-modal.is-open { opacity: 1; pointer-events: auto; transform: translate(-50%, -50%); }

.pv-close {
  position: absolute; top: 14px; right: 14px;
  background: var(--cream); border: 1px solid var(--taupe-line); border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink); z-index: 2;
}

.pv-zoom {
  aspect-ratio: 4 / 5;
  width: 100%;
  background-color: var(--taupe-line);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-radius: 6px;
  cursor: zoom-in;
  position: relative;
}
.pv-video { width: 100%; height: 100%; object-fit: contain; border-radius: 6px; background: #000; }

.pv-hint { font-size: 11.5px; color: var(--ink-soft); text-align: center; margin-top: 10px; }
@media (hover: none) { .pv-hint { display: none; } }

.pv-thumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pv-thumb {
  width: 56px; height: 56px; padding: 0; position: relative;
  border: 1.5px solid var(--taupe-line); border-radius: 4px;
  overflow: hidden; cursor: pointer; background: none;
}
.pv-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pv-thumb.sel { border-color: var(--ink); }
.pv-thumb--video::after {
  content: ''; position: absolute; inset: 0; margin: auto; width: 20px; height: 20px;
  background: rgba(20,18,14,0.55) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23fbf8f3'%3E%3Cpath d='M8 5v14l11-7z'/%3E%3C/svg%3E") center/11px no-repeat;
  border-radius: 50%;
}

.product-card__image-wrap { cursor: zoom-in; }

/* Talle numérico (calzado) como cuadradito, en vez del chip de letra */
.size-pill--box {
  width: 36px; height: 36px; min-width: 0;
  padding: 0;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 4px;
}

/* Checkout */
.checkout { max-width: 1100px; margin: 0 auto; padding: calc(var(--nav-h) + 40px) 24px 80px; }
.checkout h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 28px; }
.checkout__grid { display: grid; gap: 32px; }
.checkout__form h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin: 28px 0 14px; }
.checkout__form h3:first-child { margin-top: 0; }

.field { margin-bottom: 16px; }
.field label {
  display: block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--ink-soft); margin-bottom: 6px;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px; font-family: var(--font-sans); font-size: 14px;
  border: 1px solid var(--taupe-line); border-radius: var(--radius); background: #fff; color: var(--ink);
}
.field textarea { resize: vertical; min-height: 70px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field-row--address { grid-template-columns: 2fr 1fr; }

.checkout__form .btn { margin-top: 10px; }
.checkout__form .alert { margin-bottom: 14px; }

.checkout__summary {
  background: var(--cream-2); border-radius: 6px; padding: 24px;
  align-self: start;
}
.checkout__summary h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; }

.checkout-summary-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--taupe-line); }
.checkout-summary-item img { width: 52px; height: 62px; object-fit: cover; border-radius: 3px; }
.checkout-summary-item__info { flex: 1; }
.checkout-summary-item__name { font-size: 13.5px; font-weight: 500; }
.checkout-summary-item__variant { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }
.checkout-summary-item__price { font-size: 13px; font-weight: 500; white-space: nowrap; }

.checkout__totals { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--taupe-line); }
.checkout__totals-row { display: flex; justify-content: space-between; font-family: var(--font-display); font-size: 20px; font-weight: 600; }

.payment-method-row { display: flex; flex-direction: column; gap: 10px; margin-bottom: 4px; }
.payment-method-option {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 14px; border: 1.5px solid var(--taupe-line); border-radius: 6px;
  cursor: pointer; transition: border-color 0.15s ease, background 0.15s ease;
}
.payment-method-option:has(input:checked) { border-color: var(--ink); background: var(--cream-2); }
.payment-method-option input { accent-color: var(--ink); }
.payment-method-option__label { flex: 1; font-size: 14px; }
.payment-method-option__price { font-weight: 600; white-space: nowrap; }

/* Confirmación de pedido */
.order-confirmation { max-width: 1000px; margin: 0 auto; padding: calc(var(--nav-h) + 50px) 24px 80px; text-align: center; }
.order-confirmation h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 10px; }
.order-confirmation__sub { color: var(--ink-soft); margin-bottom: 36px; }
.order-confirmation__grid { display: grid; gap: 28px; text-align: left; }
.order-confirmation__items { background: var(--cream-2); border-radius: 6px; padding: 24px; }
.order-confirmation__items h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
.order-confirmation__side { padding: 4px; }
.order-confirmation__side h3 { font-size: 15px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.order-confirmation__address { color: var(--ink-soft); margin-bottom: 24px; line-height: 1.7; }
.order-confirmation__whatsapp { margin-bottom: 12px; }
.order-confirmation__note { font-size: 12px; color: var(--ink-soft); }

/* Vestidos de fiesta */
.dress-section { max-width: 1200px; margin: 0 auto; padding: calc(var(--nav-h) + 40px) 24px 80px; }
.dress-section h2 { font-size: clamp(28px, 5vw, 38px); margin-bottom: 6px; }
.dress-section__sub { color: var(--ink-soft); margin-bottom: 32px; }
.dress-section__cta { text-align: center; margin-top: 36px; }

.dress-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.dress-card {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 6px;
  background: var(--taupe-line);
  cursor: pointer;
}
.dress-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; display: block; }
.dress-card:hover img { transform: scale(1.05); }
.dress-card__video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }
.dress-card__play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(20,18,14,0.55); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: background 0.2s ease;
}
.dress-card:hover .dress-card__play { background: var(--accent); }
.dress-card__caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  background: linear-gradient(0deg, rgba(20,18,14,0.75), transparent);
  color: var(--cream);
  font-size: 12px;
  pointer-events: none;
}

/* Tablet */
@media (min-width: 640px) {
  .shop__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
  .look-grid { grid-template-columns: repeat(3, 1fr); }
  .dress-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Desktop */
@media (min-width: 900px) {
  :root { --nav-h: 80px; }

  .nav-links {
    position: static;
    flex-direction: row;
    background: none;
    border: none;
    padding: 0;
    gap: 34px;
    display: flex;
  }
  .nav-links a {
    padding: 0;
    font-size: 13px;
    border: none;
  }
  .nav-links a:hover { color: var(--accent); }
  .menu-toggle { display: none; }

  .shop__grid { grid-template-columns: repeat(3, 1fr); gap: 40px; }
  .dress-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; }

  .checkout__grid { grid-template-columns: 1.4fr 1fr; align-items: start; }
  .order-confirmation__grid { grid-template-columns: 1.4fr 1fr; }
}
