/** Shopify CDN: Minification failed

Line 1154:0 Unexpected "}"

**/
/* ============================================
   SARAO — Bolsos de crochet hechos a mano
   Hoja de estilos principal

   Paleta de marca:
     --wine   #66023C  (vino)
     --olive  #CAD183  (oliva)
     --cream  #FFF9F5  (crema)

   Tipografías:
     Titulares: "Yeseva One" — alternativa gratuita
     más cercana a Foda Display (serif redondeada
     con remates de bola, con mucho carácter).
     Texto: "Cormorant Garamond" — alternativa
     gratuita más cercana a Seasons (serif clásica
     y elegante).
   Cuando compres las licencias de Foda Display y
   Seasons, solo tienes que sustituir el @import y
   las variables --font-head / --font-body.
   ============================================ */

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

:root {
  --cream: #FFF9F5;
  --cream-alt: #FDFAF0;
  --wine: #66023C;
  --wine-dark: #4A0129;
  --wine-soft: rgba(102, 2, 60, 0.08);
  --olive: #CAD183;
  --olive-dark: #A8B15E;
  --ink: #3A1626;
  --ink-soft: #6B5560;
  --white: #FFFFFF;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(102, 2, 60, 0.10);
  --shadow-lg: 0 20px 50px rgba(102, 2, 60, 0.18);
  --font-head: 'Yeseva One', serif;
  --font-body: 'Cormorant Garamond', serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.15rem;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 400;
  color: var(--wine);
  line-height: 1.2;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--wine);
  color: var(--cream);
}
.btn-primary:hover { background: var(--wine-dark); transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
}
.btn-outline:hover { background: var(--wine); color: var(--cream); }

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

.btn-block { width: 100%; }
.btn-sm { padding: 10px 22px; font-size: 0.95rem; }

/* ---------- Anuncio superior ---------- */
.announce-bar {
  background: var(--wine);
  color: var(--cream);
  text-align: center;
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  padding: 9px 16px;
}
.announce-bar strong { color: var(--olive); }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: transparent;
  border-bottom: none;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
}

.nav-brand { display: flex; align-items: center; gap: 12px; }
.logo-img { height: 36px; width: auto; }
.footer-col .logo-img { height: 40px; }
.logo-word {
  font-family: var(--font-head);
  font-size: 1.7rem;
  color: var(--wine);
}

/* Fallback de logo en texto, por si no hay imagen */
.logo {
  font-family: var(--font-head);
  font-size: 1.9rem;
  color: var(--wine);
  letter-spacing: 0.01em;
}

nav.main-nav ul {
  display: flex;
  gap: 34px;
}

nav.main-nav a {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--wine);
  transition: width 0.25s ease;
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon-btn {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--wine);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--wine);
  color: var(--cream);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px; height: 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body);
}

.burger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--wine);
}

/* ---------- Hero a pantalla completa ---------- */
.hero-full {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-full-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-full::before {
  content: none;
}
.hero-full-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #66023C;
  max-width: 780px;
  padding: 0 24px;
}
.hero-full-content .eyebrow { color: var(--olive); }
.hero-full-content h1 {
  font-size: 4.2rem;
  color: #66023C;
  margin-bottom: 22px;
  text-shadow: none;
}
.hero-full-content p {
  font-size: 1.3rem;
  color: #66023C;
  opacity: 1;
  max-width: 520px;
  margin: 0 auto 34px;
}
.hero-full-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll-cue {
  position: absolute;
  bottom: 30px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ---------- Section heading ---------- */
.section {
  padding: 90px 0;
}
.section-sm { padding: 60px 0; }
.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 50px;
}
.section-head h2 { font-size: 2.5rem; margin-bottom: 12px; }
.section-head p { color: var(--ink-soft); font-size: 1.15rem; }

.bg-soft { background: var(--cream-alt); }
.bg-dark { background: var(--wine); color: var(--cream); }
.bg-dark h2, .bg-dark h3 { color: var(--cream); }
.bg-dark .section-head p { color: rgba(255,249,245,0.85); }

/* ---------- Categorías ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
}
.cat-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card .cat-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 18px;
  background: linear-gradient(to top, rgba(58,22,38,0.8), transparent);
  color: var(--cream);
}
.cat-label h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 2px; }
.cat-label span { font-size: 0.9rem; opacity: 0.9; font-family: var(--font-body); }

/* ---------- Productos ---------- */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 44px;
}
.filter-btn {
  border: 2px solid var(--wine);
  background: transparent;
  color: var(--wine);
  padding: 8px 22px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filter-btn:hover { background: var(--wine-soft); }
.filter-btn.active { background: var(--wine); color: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.product-thumb {
  position: relative;
  aspect-ratio: 1/1.1;
  overflow: hidden;
}
.product-thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity 0.35s ease, transform 0.5s ease;
}
.product-thumb img.img-b { position: absolute; inset: 0; opacity: 0; }
.product-card:hover .img-a { opacity: 0; }
.product-card:hover .img-b { opacity: 1; }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--olive);
  color: var(--wine);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 5px 13px;
  border-radius: 100px;
  text-transform: uppercase;
  font-family: var(--font-body);
}
.product-badge.badge-unique {
  background: var(--wine);
  color: var(--cream);
}

.quick-add {
  position: absolute;
  bottom: 14px; left: 14px; right: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.product-card:hover .quick-add { opacity: 1; transform: translateY(0); }

.product-info { padding: 18px 18px 22px; }
.product-info .cat { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--olive-dark); font-weight: 700; font-family: var(--font-body); }
.product-info h3 { font-size: 1.25rem; margin: 6px 0 6px; font-weight: 400; }
.product-info .price { font-family: var(--font-body); font-weight: 700; color: var(--wine); font-size: 1.15rem; }
.price-old { text-decoration: line-through; color: #b39aa5; font-weight: 400; margin-right: 8px; font-size: 1rem; }
.unique-tag { display:block; font-size:0.78rem; color: var(--wine); font-style: italic; margin-top: 4px; }

/* ---------- Historia / About ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-grid img { border-radius: var(--radius); box-shadow: var(--shadow); }
.story-copy p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1.18rem; }
.story-stats { display: flex; gap: 40px; margin-top: 30px; }
.story-stats div strong { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--wine); }
.story-stats div span { font-size: 0.85rem; color: var(--ink-soft); font-family: var(--font-body); }

/* ---------- Valores ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-card {
  text-align: center;
  padding: 34px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.value-card .icon { color: var(--wine); margin-bottom: 14px; display: flex; justify-content: center; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.value-card p { font-size: 1.02rem; color: var(--ink-soft); }

/* ---------- Instagram ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.insta-grid a { aspect-ratio: 1/1; overflow: hidden; border-radius: 10px; position: relative; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.insta-grid a:hover img { transform: scale(1.1); }

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--wine);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 60px;
  text-align: center;
}
.newsletter h2 { color: var(--cream); font-size: 2.2rem; margin-bottom: 10px; }
.newsletter p { opacity: 0.9; margin-bottom: 28px; font-size: 1.15rem; }
.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  gap: 10px;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter-note { font-size: 0.82rem; opacity: 0.75; margin-top: 14px; }

/* ---------- Marco scalloped (estilo creatividades de marca) ---------- */
.scallop-banner {
  position: relative;
  background-color: var(--olive);
  background-image: repeating-linear-gradient(90deg, rgba(255,249,245,0.55) 0 22px, transparent 22px 44px);
  border-radius: 30px;
  padding: 48px 24px;
  overflow: hidden;
}
.scallop-frame {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: 26px;
  padding: 56px 40px 44px;
  text-align: center;
}
.scallop-frame::before,
.scallop-frame::after {
  content: "";
  position: absolute;
  left: 26px; right: 26px;
  height: 26px;
  background-image: radial-gradient(circle at 13px 13px, var(--wine) 12px, transparent 13px);
  background-size: 26px 26px;
  background-repeat: repeat-x;
}
.scallop-frame::before { top: -13px; }
.scallop-frame::after { bottom: -13px; transform: scaleY(-1); }
.scallop-frame-border {
  position: absolute;
  inset: 0;
  border: 3px solid var(--wine);
  border-radius: 26px;
  pointer-events: none;
}
.scallop-frame .eyebrow { color: var(--wine); }
.scallop-frame h2 { font-size: 2.3rem; margin-bottom: 14px; }
.scallop-frame p.tagline { font-size: 1.3rem; color: var(--ink); font-style: italic; margin-bottom: 18px; }
.scallop-frame .scallop-notes { display: flex; justify-content: center; gap: 26px; margin-top: 10px; flex-wrap: wrap; }
.scallop-frame .scallop-notes span { font-size: 1rem; color: var(--wine); font-weight: 600; }
.scallop-frame .btn { margin-top: 26px; }

.tardeo-how-plain {
  max-width: 640px;
  margin: 0 auto 10px;
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(102, 2, 60, 0.14);
}
.tardeo-how-plain h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 6px;
}
.tardeo-how-plain p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  margin: 0;
}
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-alt);
  color: var(--wine);
}
.tardeo-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.tardeo-products .product-card {
  background: transparent;
  box-shadow: none;
  flex: 0 1 260px;
  max-width: 260px;
}
.tardeo-products .product-card:hover {
  transform: none;
  box-shadow: none;
}
.tardeo-products .product-info {
  text-align: center;
  padding-left: 0;
  padding-right: 0;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--wine);
  color: var(--cream);
  padding: 70px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,249,245,0.18);
}
.footer-col .nav-brand { margin-bottom: 14px; }
.footer-col h4 {
  color: var(--olive);
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { font-size: 1.02rem; opacity: 0.85; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; color: var(--olive); }
.footer-col p { font-size: 1rem; opacity: 0.8; margin-top: 14px; max-width: 260px; }

.social-icons { display: flex; gap: 14px; margin-top: 16px; }
.social-icons a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,249,245,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.social-icons a:hover { background: var(--olive); border-color: var(--olive); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.85rem;
  opacity: 0.65;
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Carrito lateral ---------- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(58,22,38,0.45);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 400px;
  max-width: 92vw;
  height: 100%;
  background: var(--cream);
  z-index: 950;
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  transition: right 0.35s ease;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { right: 0; }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(102,2,60,0.12);
}
.cart-head h3 { font-size: 1.3rem; }
.cart-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--wine); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 18px 24px;
}
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(102,2,60,0.08);
}
.cart-item img { width: 70px; height: 80px; object-fit: cover; border-radius: 10px; }
.cart-item h4 { font-size: 1.02rem; font-weight: 600; margin-bottom: 4px; font-family: var(--font-body); color: var(--ink); }
.cart-item .cart-item-cat { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 8px; }
.qty-control { display: flex; align-items: center; gap: 10px; }
.qty-control button {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1px solid var(--wine); background: none; cursor: pointer; font-size: 0.9rem; line-height: 1; color: var(--wine);
}
.cart-item-remove { background: none; border: none; color: var(--wine); font-size: 0.85rem; cursor: pointer; text-decoration: underline; margin-top: 6px; font-family: var(--font-body); }
.cart-item-price { text-align: right; font-weight: 700; white-space: nowrap; color: var(--wine); }

.cart-empty { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.cart-empty span { color: var(--wine); display: flex; justify-content: center; margin-bottom: 14px; }

.cart-foot {
  padding: 20px 24px 26px;
  border-top: 1px solid rgba(102,2,60,0.1);
}
.cart-subtotal {
  display: flex; justify-content: space-between;
  font-weight: 700; font-size: 1.15rem;
  margin-bottom: 16px;
  color: var(--ink);
}
.cart-foot .btn { margin-bottom: 10px; }
.cart-note { font-size: 0.82rem; color: var(--ink-soft); text-align: center; }

/* ---------- Página de colección ---------- */
.page-header {
  padding: 60px 0 20px;
  text-align: center;
}
.page-header .eyebrow { display: block; }
.page-header h1 { font-size: 2.9rem; margin-top: 8px; }
.breadcrumb { font-size: 0.9rem; color: var(--ink-soft); margin-top: 10px; }
.breadcrumb a:hover { color: var(--wine); }

/* ---------- Página de producto ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1/1.05;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  position: relative;
}
.product-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.product-gallery-thumbs { display: flex; gap: 12px; }
.product-gallery-thumbs img {
  width: 76px; height: 84px; object-fit: cover; border-radius: 10px; cursor: pointer;
  border: 2px solid transparent; opacity: 0.7; transition: all 0.2s ease;
}
.product-gallery-thumbs img.active { border-color: var(--wine); opacity: 1; }

.pd-cat { text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem; color: var(--olive-dark); font-weight: 700; font-family: var(--font-body); }
.pd-title { font-size: 2.3rem; margin: 10px 0 14px; }
.pd-price { font-size: 1.5rem; color: var(--wine); font-weight: 700; margin-bottom: 20px; font-family: var(--font-body); }
.pd-desc { color: var(--ink-soft); margin-bottom: 26px; font-size: 1.15rem; }

.pd-unique-note {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wine-soft);
  color: var(--wine);
  border: 1px solid var(--wine);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 22px;
}

.pd-colors { margin-bottom: 26px; }
.pd-colors h4, .pd-qty h4 { font-size: 0.92rem; margin-bottom: 10px; font-weight: 700; font-family: var(--font-body); color: var(--ink); }
.color-dots { display: flex; gap: 10px; }
.color-dot {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--white); box-shadow: 0 0 0 1.5px var(--wine);
  cursor: pointer;
}
.color-dot.selected { box-shadow: 0 0 0 2px var(--wine); }

.pd-qty { display: flex; align-items: center; gap: 20px; margin-bottom: 26px; }
.pd-actions { display: flex; gap: 14px; margin-bottom: 30px; }

.pd-meta { border-top: 1px solid rgba(102,2,60,0.12); padding-top: 20px; font-size: 0.95rem; color: var(--ink-soft); }
.pd-meta p { margin-bottom: 8px; }
.pd-meta strong { color: var(--ink); }

.related-title { text-align: center; margin: 90px 0 40px; font-size: 2rem; }

/* ---------- Formularios (contacto / newsletter) ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; font-family: var(--font-body); }
.form-group input, .form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid rgba(102,2,60,0.25);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1.02rem;
  background: var(--white);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}
.contact-info-card h3 { margin-bottom: 20px; }
.contact-info-item { display: flex; gap: 14px; margin-bottom: 20px; }
.contact-info-item .icon { color: var(--wine); display: flex; align-items: center; }
.contact-info-item h4 { font-size: 1rem; margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 0.96rem; color: var(--ink-soft); }

.form-msg { display: none; margin-top: 16px; padding: 14px 18px; border-radius: var(--radius-sm); background: var(--cream-alt); font-size: 0.92rem; color: var(--wine); }
.form-msg.show { display: block; }

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--wine);
  color: var(--cream);
  padding: 14px 26px;
  border-radius: 100px;
  font-size: 0.95rem;
  box-shadow: var(--shadow-lg);
  z-index: 1200;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: var(--font-body);
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-full-content h1 { font-size: 2.8rem; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .story-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  nav.main-nav { display: none; }
  .burger { display: block; }
}

@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .newsletter { padding: 40px 24px; }
  .newsletter-form { flex-direction: column; }
  .hero-full-content h1 { font-size: 2.2rem; }
  .hero-full-content p { font-size: 1.05rem; }
  .section { padding: 60px 0; }
  .scallop-frame { padding: 46px 22px 34px; }
}

/* Mobile nav dropdown */
nav.main-nav.mobile-open {
  display: block;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(102,2,60,0.1);
  box-shadow: var(--shadow);
}
nav.main-nav.mobile-open ul { flex-direction: column; padding: 20px 24px; gap: 18px; }

/* Refuerzo: texto del hero en granate, por si algo lo pisa */
.hero-full-content h1 {
  color: #66023C !important;
}
.hero-full-content p {
  color: #66023C !important;
}
header.site-header {
  background: transparent !important;
  border-bottom: none !important;
  backdrop-filter: none !important;
}
/* ============================================
   RONDA DE AJUSTES: oliva, botones, banner Tardeo, móvil
   ============================================ */

/* ---------- Más presencia del verde oliva ---------- */
.eyebrow {
  color: var(--olive-dark);
}
.section-head h2 {
  position: relative;
  padding-bottom: 18px;
}
.section-head h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  background: var(--olive);
  border-radius: 3px;
}
.tardeo-how-plain {
  border-top-color: var(--olive);
}
.social-icons a:hover {
  color: var(--wine);
}

/* ---------- Mismo hover en todos los botones (fondo oliva, texto vino) ---------- */
.btn-primary:hover {
  background: var(--olive);
  color: var(--wine);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-outline:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--wine);
}
.filter-btn:hover {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--wine);
}

/* ---------- Banner Tardeo: menos apretado, más amplitud ---------- */
.tardeo-section .section-head {
  max-width: 800px;
}
.tardeo-section .tardeo-how-plain {
  max-width: 800px;
}
.tardeo-section .section-head p {
  font-size: 1.2rem;
}

/* ---------- Móvil: botón "añadir" visible sin hover (no hay hover táctil) ---------- */
@media (max-width: 768px) {
  .quick-add {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 10px;
    padding: 0 14px 14px;
  }
  .product-card:hover .quick-add { opacity: 1; transform: none; }
}

/* ---------- Móvil: altura del hero correcta en navegadores móviles ---------- */
@media (max-width: 980px) {
  .hero-full {
    min-height: 100svh;
    min-height: 100vh;
    padding: 100px 0 60px;
  }
  .hero-full-content h1 { font-size: 2.4rem; }
  .hero-full-content p { font-size: 1.1rem; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col .nav-brand { justify-content: center; }
  .social-icons { justify-content: center; }
  .story-copy .btn { margin: 0 auto; }
}

@media (max-width: 480px) {
  .hero-full-content h1 { font-size: 2rem; }
  .hero-full-actions { flex-direction: column; width: 100%; }
  .hero-full-actions .btn { width: 100%; }
  .section-head h2 { font-size: 1.9rem; }
  .tardeo-section .section-head p,
  .tardeo-how-plain p { font-size: 1rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
/* ============================================
   Página Sobre Nosotros (nuevo diseño)
   ============================================ */

.about-header { padding-bottom: 40px; }
.about-subtitle {
  max-width: 620px;
  margin: 14px auto 0;
  color: var(--ink-soft);
  font-size: 1.15rem;
  font-style: italic;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-story-grid img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}
.about-story-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.15rem; }
.about-quote {
  border-left: 3px solid var(--olive);
  padding-left: 20px;
  margin-top: 24px;
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--wine);
  font-style: italic;
  line-height: 1.4;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}
.process-step { text-align: center; }
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--wine);
  color: var(--cream);
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 16px;
}
.process-step h3 { font-size: 1.2rem; margin-bottom: 8px; }
.process-step p { font-size: 1rem; color: var(--ink-soft); }

.faq-list { border-top: 1px solid rgba(102,2,60,0.14); }
.faq-item {
  border-bottom: 1px solid rgba(102,2,60,0.14);
  padding: 20px 0;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--wine);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--wine); transition: transform 0.25s ease; flex-shrink: 0; margin-left: 16px; }
.faq-item[open] .faq-arrow { transform: rotate(180deg); }
.faq-answer { color: var(--ink-soft); font-size: 1.05rem; margin-top: 14px; line-height: 1.6; }
.faq-answer p { margin: 0; }

@media (max-width: 980px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 30px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}
/* ---------- Cabecera Sobre Nosotros con foto de fondo ---------- */
.about-header--photo {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  padding: 40px 0;
}
.about-header-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.about-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 249, 245, 0.55);
  z-index: 1;
}
.about-header-content {
  position: relative;
  z-index: 2;
}
.about-header--photo .eyebrow { color: var(--olive-dark); }
.about-header--photo h1 { color: var(--wine); }
.about-header--photo .about-subtitle { color: var(--ink-soft); }
.about-header--photo .breadcrumb { color: var(--ink-soft); }
.about-header--photo .breadcrumb a:hover { color: var(--wine); }

.about-header--photo .container { width: 100%; }

@media (max-width: 600px) {
  .about-header--photo { min-height: 220px; padding: 30px 0; }
}
/* ---------- Vídeo de fondo en Proceso de creación ---------- */
.process-hero {
  position: relative;
  margin-bottom: 50px;
}
.process-hero--video {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
  min-height: 60vh;
  display: flex;
  align-items: center;
  padding: 60px 24px;
}
.process-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.process-hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.process-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 249, 245, 0.55);
  z-index: 1;
}
.process-hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.process-hero--video .eyebrow { color: var(--olive-dark); }
.process-hero--video h2 { color: var(--wine); }
.process-hero--video p { color: var(--ink-soft); }

@media (max-width: 600px) {
  .process-hero--video { min-height: 50vh; padding: 40px 20px; }
}
.process-hero-content h2::after {
  display: none;
}
}
/* Quitar el espacio beige arriba/abajo del vídeo de Proceso de creación */
.process-section--video {
  padding: 0;
}
.process-section--video .process-hero--video {
  margin-bottom: 0;
}
/* ---------- Página de contraseña ---------- */
.password-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: 60px 24px;
}
.password-page-inner {
  max-width: 440px;
  width: 100%;
  text-align: center;
}
.password-logo { display: inline-flex; justify-content: center; margin-bottom: 30px; }
.password-logo .logo-img { height: 48px; }
.password-message { color: var(--ink-soft); font-size: 1.15rem; margin-bottom: 30px; }
.password-message p { margin-bottom: 10px; }
.password-form {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.password-form input[type="password"] {
  flex: 1;
  padding: 14px 20px;
  border-radius: 100px;
  border: 1px solid rgba(102,2,60,0.25);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--white);
}
.password-error { color: var(--wine); font-size: 0.9rem; margin-bottom: 14px; }
.password-divider {
  height: 1px;
  background: rgba(102,2,60,0.14);
  margin: 0 0 30px;
}
.password-notify h3 { font-size: 1.3rem; margin-bottom: 10px; }
.password-notify p { color: var(--ink-soft); font-size: 1rem; margin-bottom: 20px; }
.password-notify-form {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}
.password-notify-form input[type="email"] {
  flex: 1;
  padding: 12px 18px;
  border-radius: 100px;
  border: 1px solid rgba(102,2,60,0.25);
  font-family: var(--font-body);
  font-size: 0.98rem;
  background: var(--white);
}
.password-notify-success { color: var(--wine); font-size: 0.92rem; margin-top: 8px; }
.password-socials { display: flex; justify-content: center; gap: 14px; margin-top: 30px; }
.password-socials a {
  width: 38px; height: 38px;
  border: 1px solid rgba(102,2,60,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--wine);
}
.password-socials a:hover { background: var(--olive); border-color: var(--olive); }

@media (max-width: 480px) {
  .password-form, .password-notify-form { flex-direction: column; }
}