/* =========================================================
   Tesha Women · Sistema de diseño
   Tokens: color, tipografía, layout
   ========================================================= */

:root {
  /* Color */
  --ink:        #1B1712;   /* texto principal, negro cálido */
  --bone:       #EDE7DC;   /* fondo base, piedra cálida */
  --bone-soft:  #F6F3EC;
  --wine:       #7C2331;   /* acento primario, CTA */
  --wine-dark:  #5C1A25;
  --clay:       #C98B6E;   /* acento secundario */
  --sage:       #6B7361;   /* etiquetas / éxito */
  --white:      #FFFFFF;
  --line:       rgba(27,23,18,.14);

  /* Tipografía */
  --font-display: 'Fraunces', serif;
  --font-body:    'Work Sans', sans-serif;
  --font-mono:    'IBM Plex Mono', monospace;
  --font-signature: 'Great Vibes', cursive; /* tipografía del logo Tesha Women */

  /* Layout */
  --radius: 2px;
  --container-pad: clamp(1rem, 4vw, 3rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, .font-display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.font-signature {
  font-family: var(--font-signature);
  font-style: normal;
  font-weight: 400;
}

:focus-visible {
  outline: 2px solid var(--wine);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
}

/* ---------------------------------------------------------
   Franja de muestras (signature element / nav de categorías)
   --------------------------------------------------------- */
.swatch-strip {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .6rem var(--container-pad);
  background: var(--ink);
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  transition: padding .35s ease;
}
.swatch-strip::-webkit-scrollbar { display: none; }
.site-header.is-scrolled .swatch-strip {
  padding-top: .3rem;
  padding-bottom: .3rem;
}

.swatch-strip__brand {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--bone);
  opacity: .6;
  flex-shrink: 0;
}

.swatch-strip__list {
  display: flex;
  gap: .5rem;
}

.swatch--pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .3rem .8rem;
  border: 1px solid rgba(237,231,220,.25);
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .03em;
  color: var(--bone);
  transition: border-color .2s ease, background .2s ease;
}
.swatch--pill:hover {
  border-color: var(--swatch-color, var(--clay));
  background: rgba(237,231,220,.06);
}
.swatch__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--swatch-color, var(--clay));
  flex-shrink: 0;
}

/* ---------- Subcategorías (dropdown al hover / tap) ---------- */
.swatch-group { position: relative; flex-shrink: 0; }

.swatch--has-children { gap: .35rem; }
.swatch__caret { transition: transform .2s ease; opacity: .7; }
.swatch-group:hover .swatch__caret,
.swatch-group.is-open .swatch__caret { transform: rotate(180deg); }

.swatch-group__menu {
  position: absolute;
  top: calc(100% + .6rem);
  left: 0;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(27,23,18,.15);
  padding: .4rem;
  display: none;
  flex-direction: column;
  z-index: 1040;
  white-space: nowrap;
}
.swatch-group:hover .swatch-group__menu,
.swatch-group.is-open .swatch-group__menu {
  display: flex;
}
.swatch-group__item {
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .86rem;
  padding: .55rem .7rem;
  border-radius: 2px;
}
.swatch-group__item:hover { background: var(--bone-soft); color: var(--wine); }
.swatch-group__item--all {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--line);
  margin-bottom: .3rem;
  padding-bottom: .6rem;
}

/* En táctil no hay :hover confiable: el caret hace de botón para abrir/cerrar */
@media (hover: none) {
  .swatch-group__menu { position: static; box-shadow: none; border: none; margin-top: .3rem; }
}

/* ---------------------------------------------------------
   Header — arranca grande, se fija arriba y se achica al scrollear
   --------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1030;
  background: var(--bone);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s ease;
}
.site-header.is-scrolled {
  box-shadow: 0 4px 18px rgba(27,23,18,.08);
}

#headerSpacer {
  transition: height .1s linear;
}

.site-header .navbar {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  transition: padding .35s ease;
}
.site-header.is-scrolled .navbar {
  padding-top: .55rem;
  padding-bottom: .55rem;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
}
.site-header__logo-img {
  width: 62px; height: 62px;
  object-fit: contain;
  flex-shrink: 0;
  transition: width .35s ease, height .35s ease;
}
.site-header.is-scrolled .site-header__logo-img {
  width: 36px; height: 36px;
}
.site-header__logo-text {
  font-family: var(--font-signature);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--wine);
  white-space: nowrap;
  transition: font-size .35s ease;
}
.site-header.is-scrolled .site-header__logo-text {
  font-size: 1.5rem;
}

@media (max-width: 767px) {
  .site-header__logo-img { width: 48px; height: 48px; }
  .site-header__logo-text { font-size: 1.7rem; }
  .site-header.is-scrolled .site-header__logo-img { width: 30px; height: 30px; }
  .site-header.is-scrolled .site-header__logo-text { font-size: 1.2rem; }
}

.navbar-nav .nav-link {
  font-size: .82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink);
  padding: .4rem 0;
  position: relative;
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px; background: var(--wine);
  transition: width .25s ease;
}
.navbar-nav .nav-link:hover::after { width: 100%; }

.cart-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  color: var(--ink);
}
.cart-link__count {
  position: absolute; top: -4px; right: -4px;
  background: var(--wine); color: var(--white);
  font-family: var(--font-mono);
  font-size: .65rem;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ---------------------------------------------------------
   Buscador del header (colapsable)
   --------------------------------------------------------- */
.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: none;
  border: none;
  color: var(--ink);
  cursor: pointer;
  flex-shrink: 0;
}
.search-toggle:hover { color: var(--wine); }

.nav-search {
  display: flex;
  align-items: center;
  gap: .6rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .25s ease, opacity .2s ease, margin .25s ease;
  color: var(--ink);
}
.nav-search.is-open {
  max-height: 60px;
  opacity: 1;
  margin-top: .9rem;
}
.nav-search svg { flex-shrink: 0; opacity: .55; }
.nav-search input {
  flex: 1;
  border: none;
  border-bottom: 1px solid var(--line);
  background: none;
  padding: .5rem 0;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
}
.nav-search input:focus { outline: none; border-bottom-color: var(--wine); }
.nav-search input::placeholder { color: rgba(27,23,18,.4); }

/* Buscador dentro de la página de catálogo (siempre visible) */
.catalog-search {
  display: flex;
  align-items: center;
  gap: .6rem;
  max-width: 420px;
  border-bottom: 1px solid var(--line);
  padding-bottom: .5rem;
  margin-bottom: 1rem;
}
.catalog-search svg { flex-shrink: 0; opacity: .5; }
.catalog-search input {
  flex: 1;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
}
.catalog-search input:focus { outline: none; }
.catalog-search input::placeholder { color: rgba(27,23,18,.4); }
.catalog-search__clear {
  font-family: var(--font-mono);
  font-size: .8rem;
  opacity: .5;
}
.catalog-search__clear:hover { opacity: 1; color: var(--wine); }

/* ---------------------------------------------------------
   Hero
   --------------------------------------------------------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 78vh;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 991px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem var(--container-pad);
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 1.2rem;
}

.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  margin-bottom: 1.4rem;
}
.hero__title em { font-style: italic; color: var(--wine); }

.hero__desc {
  max-width: 40ch;
  font-size: 1.05rem;
  color: rgba(27,23,18,.72);
  margin-bottom: 2rem;
}

.hero__visual {
  position: relative;
  background: linear-gradient(160deg, var(--clay) 0%, var(--wine) 100%);
  overflow: hidden;
  min-height: 320px;
}
.hero__visual img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
}
.hero__visual-tag {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--bone-soft);
  padding: .5rem .9rem;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .04em;
}

/* ---------------------------------------------------------
   Botones
   --------------------------------------------------------- */
.btn-alma {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--ink);
  color: var(--bone);
  border: 1px solid var(--ink);
  padding: .75rem 1.6rem;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background .2s ease, color .2s ease;
}
.btn-alma:hover { background: var(--wine); border-color: var(--wine); color: var(--white); }

.btn-alma--outline {
  background: transparent;
  color: var(--ink);
}
.btn-alma--outline:hover { background: var(--ink); color: var(--bone); }

/* ---------------------------------------------------------
   Secciones / encabezados
   --------------------------------------------------------- */
.section { padding: 4.5rem var(--container-pad); }
.section--tight { padding: 2.5rem var(--container-pad); }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.section-head__title { font-size: clamp(1.8rem, 3vw, 2.6rem); margin: 0; }
.section-head__link {
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .04em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* ---------------------------------------------------------
   Grilla de productos / tarjetas
   --------------------------------------------------------- */
.product-card { position: relative; }

.product-card__frame {
  display: block; /* el <a> es inline por defecto: sin esto, el ancho de los
                      hijos absolutos (botón, badge) se calcula mal y el
                      texto del botón "Agregar" queda cortado */
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bone-soft);
  margin-bottom: .9rem;
}
.product-card__frame::after {
  /* Degradado sutil abajo para que el botón "Agregar" siempre tenga contraste,
     sin importar cuán clara o colorida sea la foto de fondo. */
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(27,23,18,.55), rgba(27,23,18,0));
  pointer-events: none;
  z-index: 1;
}
.product-card__frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .4s ease, transform .5s ease;
}
.product-card__frame img.img-hover {
  position: absolute; inset: 0; opacity: 0;
}
.product-card:hover .img-hover { opacity: 1; }
.product-card:hover .img-base { transform: scale(1.03); }

.product-card__badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--ink); color: var(--bone);
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .05em;
  padding: .25rem .55rem;
  text-transform: uppercase;
  z-index: 2;
}
.product-card__badge--sale { background: var(--wine); }

.product-card__quick {
  position: absolute; left: .7rem; right: .7rem; bottom: .7rem;
  opacity: 1; /* siempre visible por defecto: imprescindible en mobile/táctil */
  z-index: 2;
}
.product-card__quick .btn-alma {
  justify-content: center;
  white-space: nowrap;
}

/* En dispositivos con mouse real, el botón queda oculto hasta el hover
   (fade simple, sin transform, para que nunca se vea "cortado" a medio camino) */
@media (hover: hover) and (pointer: fine) {
  .product-card__quick {
    opacity: 0;
    transition: opacity .25s ease;
  }
  .product-card:hover .product-card__quick { opacity: 1; }
}

.product-card__cat {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--sage);
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: .2rem 0 .3rem;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: .88rem;
}
.product-card__price .old { text-decoration: line-through; opacity: .5; margin-right: .5rem; }
.product-card__price .now { color: var(--wine); }

/* ---------------------------------------------------------
   Filtros de catálogo
   --------------------------------------------------------- */
.filters-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  padding: 1.2rem var(--container-pad);
  border-bottom: 1px solid var(--line);
  background: var(--bone-soft);
}
.filter-chip {
  font-family: var(--font-mono);
  font-size: .74rem;
  letter-spacing: .03em;
  padding: .4rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
}
.filter-chip.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }

.filters-bar--sub {
  padding-top: .8rem;
  padding-bottom: .8rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.filter-chip--sub {
  font-size: .7rem;
  padding: .32rem .75rem;
  background: var(--bone-soft);
  border-color: transparent;
}
.filter-chip--sub.is-active { background: var(--wine); border-color: var(--wine); color: var(--white); }

/* ---------------------------------------------------------
   Página de producto
   --------------------------------------------------------- */
.pdp-gallery { position: sticky; top: 1rem; }
.pdp-gallery__main {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--bone-soft);
  margin-bottom: .6rem;
}
.pdp-gallery__main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-gallery__thumbs { display: flex; gap: .5rem; }
.pdp-gallery__thumbs img {
  width: 64px; height: 80px; object-fit: cover; cursor: pointer;
  border: 1px solid transparent;
}
.pdp-gallery__thumbs img.is-active { border-color: var(--wine); }

.talle-option {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px; height: 42px;
  padding: 0 .6rem;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: .8rem;
  cursor: pointer;
  background: var(--white);
}
.talle-option.is-active { background: var(--ink); color: var(--bone); border-color: var(--ink); }
.talle-option.is-disabled { opacity: .3; text-decoration: line-through; pointer-events: none; }

.color-option {
  display: inline-block;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid var(--white);
  outline: 1px solid var(--line);
  outline-offset: 0;
  position: relative;
}
.color-option.is-active { outline: 2px solid var(--wine); outline-offset: 2px; }
.color-option.is-active::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--bone);
  text-shadow: 0 0 2px rgba(0,0,0,.6);
  font-size: .85rem;
}

/* ---------------------------------------------------------
   Carrito
   --------------------------------------------------------- */
.cart-row {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-row img { width: 90px; height: 110px; object-fit: cover; }

.qty-control {
  display: inline-flex;
  border: 1px solid var(--line);
  font-family: var(--font-mono);
}
.qty-control button {
  width: 30px; height: 30px; background: none; border: none; cursor: pointer;
}
.qty-control span { width: 30px; text-align: center; line-height: 30px; }

.envio-option {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .5rem .2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: .86rem;
}
.envio-option:last-child { border-bottom: none; }
.envio-option__radio {
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 1px solid rgba(27,23,18,.35);
  flex-shrink: 0;
  position: relative;
}
.envio-option.is-active .envio-option__radio { border-color: var(--wine); }
.envio-option.is-active .envio-option__radio::after {
  content: '';
  position: absolute; inset: 3px;
  border-radius: 50%;
  background: var(--wine);
}
.envio-option__desc { flex: 1; }
.envio-option.is-active .envio-option__desc { font-weight: 500; }
.envio-option__precio { font-family: var(--font-mono); font-size: .8rem; opacity: .7; }

/* ---------------------------------------------------------
   Checkout
   --------------------------------------------------------- */
.site-alert {
  padding: .9rem 1.1rem;
  margin-bottom: 1.5rem;
  font-family: var(--font-mono);
  font-size: .85rem;
}
.site-alert--error { background: rgba(124,35,49,.08); color: var(--wine-dark); border: 1px solid rgba(124,35,49,.25); }
.site-alert--ok { background: rgba(107,115,97,.1); color: var(--sage); border: 1px solid rgba(107,115,97,.3); }

.checkout-label {
  display: block;
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .55;
  margin: 1rem 0 .35rem;
}
.checkout-label:first-child { margin-top: 0; }
.checkout-input, .checkout-select, textarea.checkout-input {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  padding: .65rem .8rem;
  font-family: var(--font-body);
  font-size: .92rem;
  color: var(--ink);
}
.checkout-input:focus, .checkout-select:focus, textarea.checkout-input:focus {
  outline: 2px solid var(--wine);
  outline-offset: 1px;
}
.checkout-hint { font-family: var(--font-mono); font-size: .74rem; opacity: .55; margin: .35rem 0 0; }

.pago-option {
  display: block;
  border: 1px solid var(--line);
  padding: .9rem 1rem;
  margin-bottom: .6rem;
  cursor: pointer;
  transition: border-color .15s ease, background .15s ease;
}
.pago-option:hover { border-color: rgba(27,23,18,.35); }
.pago-option.is-active { border-color: var(--wine); background: var(--bone-soft); }
.pago-option__titulo { display: flex; align-items: center; gap: .6rem; font-weight: 500; }
.pago-option__radio {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid rgba(27,23,18,.35);
  flex-shrink: 0; position: relative;
}
.pago-option.is-active .pago-option__radio { border-color: var(--wine); }
.pago-option.is-active .pago-option__radio::after {
  content: ''; position: absolute; inset: 3px; border-radius: 50%; background: var(--wine);
}
.pago-option__desc { font-size: .82rem; opacity: .65; margin: .3rem 0 0 1.6rem; }

/* ---------------------------------------------------------
   Footer
   --------------------------------------------------------- */
.site-footer { background: var(--ink); color: var(--bone); }
.site-footer__logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-signature);
  font-size: 1.9rem;
  color: var(--clay);
  margin-bottom: .8rem;
}
.site-footer__logo-img { width: 42px; height: 42px; object-fit: contain; }
.site-footer__text { opacity: .65; font-size: .9rem; max-width: 32ch; }
.site-footer__title {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .6;
  margin-bottom: .9rem;
}
.site-footer__links { list-style: none; padding: 0; display: flex; flex-direction: column; gap: .5rem; font-size: .88rem; }
.site-footer__links a:hover { color: var(--clay); }

.footer-form { display: flex; border-bottom: 1px solid rgba(237,231,220,.3); }
.footer-form input {
  flex: 1; background: none; border: none; color: var(--bone);
  padding: .5rem 0; font-family: var(--font-body);
}
.footer-form input::placeholder { color: rgba(237,231,220,.4); }
.footer-form button {
  background: none; border: none; color: var(--clay);
  font-family: var(--font-mono); font-size: .78rem; letter-spacing: .05em;
}

.site-footer__bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(237,231,220,.15);
  font-family: var(--font-mono);
  font-size: .72rem;
  opacity: .5;
}

/* ---------------------------------------------------------
   Toast simple para "añadido al carrito"
   --------------------------------------------------------- */
.mini-toast {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--ink); color: var(--bone);
  padding: .9rem 1.3rem;
  font-family: var(--font-mono);
  font-size: .8rem;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  z-index: 1080;
}
.mini-toast.is-visible { transform: translateY(0); opacity: 1; }

/* ---------------------------------------------------------
   Globo de error sobre "Agregar al carrito" (falta talle/color)
   --------------------------------------------------------- */
.pdp-add-wrap { position: relative; display: inline-block; }
.pdp-tooltip {
  position: absolute;
  bottom: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--wine);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .02em;
  padding: .6rem 1rem;
  border-radius: 3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}
.pdp-tooltip::after {
  content: '';
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--wine);
}
.pdp-tooltip.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }

@keyframes pdp-shake {
  10%, 90% { transform: translateX(-1px); }
  20%, 80% { transform: translateX(2px); }
  30%, 50%, 70% { transform: translateX(-4px); }
  40%, 60% { transform: translateX(4px); }
}
.pdp-add-wrap.is-shaking .btn-alma { animation: pdp-shake .5s; border-color: var(--wine); }
