/** Shopify CDN: Minification failed

Line 1244:0 Expected "}" to go with "{"

**/
/* ============================================================
   YADOMS ARG â€” CSS para Shopify v2
   ============================================================ */

/* â”€â”€â”€ Variables â”€â”€â”€ */
:root {
  --primary: #2d6a4f;
  --primary-light: #b8e89a;
  --primary-foreground: #ffffff;
  --foreground: #0D1F3C;
  --background: #f8fafc;
  --secondary: #e8f0fa;
  --border: #e2e8f0;
  --dark-bg: #0D1F3C;
  --whatsapp: #25D366;
  --whatsapp-hover: #1ebe5a;
  --sold-out: #dc2626;
  --font-display: "Instrument Sans", sans-serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --radius-pill: 9999px;
  --radius-card: 1.5rem;
  --radius-btn: 9999px;
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-primary: 0 8px 24px rgba(157, 215, 115, 0.25);
}
/* â”€â”€â”€ Reset â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }
body { font-family: var(--font-sans); color: var(--foreground); background: var(--background); margin: 0; }
img { max-width: 100%; display: block; }

/* â”€â”€â”€ Ancho general â”€â”€â”€ */
.shopify-section { width: 100% !important; }

.page-width, .page-width--narrow {
  max-width: 1280px !important;
  padding: 0 2rem !important;
}

/* ================================================================
   HERO
   ================================================================ */
.yd-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}

.yd-hero__bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0;
}

.yd-hero__bg img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  z-index: 0 !important;
}

.yd-hero__overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 35%,
    rgba(255, 255, 255, 0.5) 60%,
    transparent 100%
  ) !important;
}

.yd-hero__content {
  position: relative !important;
  z-index: 1 !important;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.yd-hero__text { max-width: 42rem; }

.yd-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 700;
  color: var(--foreground);
  line-height: 1.1;
  margin: 0 0 1.5rem;
  -webkit-font-smoothing: antialiased;
}

.yd-hero__title em { color: var(--primary); font-style: normal}

.yd-hero__subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(13, 31, 60, 0.75);
  margin: 0 0 2.5rem;
  max-width: 32rem;
  line-height: 1.6;
}

.yd-hero__cta { display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .yd-hero__cta { flex-direction: row; } }

/* ================================================================
   BADGE
   ================================================================ */
.yd-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  background: rgba(37, 99, 168, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

/* ================================================================
   BOTONES
   ================================================================ */
.yd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1.25rem 2.5rem;
  border-radius: var(--radius-btn);
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.yd-btn--primary { background: var(--primary); color: #fff; box-shadow: var(--shadow-primary); }
.yd-btn--primary:hover { box-shadow: 0 12px 32px rgba(157, 215, 115, 0.35); transform: translateY(-2px); color: #fff; }

.yd-btn--outline { background: white; color: var(--foreground); border: 1px solid var(--border); }
.yd-btn--outline:hover { background: var(--secondary); color: var(--primary); }

.yd-btn--sm {
  padding: 1rem 2rem;
  font-size: 1.35rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  background: var(--secondary);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}

.yd-btn--sm:hover { background: var(--primary); color: white; }

.yd-btn--whatsapp {
  background: var(--whatsapp);
  color: white;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 1.1rem 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.yd-btn--whatsapp:hover {
  background: var(--whatsapp-hover);
  transform: translateY(-2px);
  color: white;
}

/* ================================================================
   ABOUT
   ================================================================ */
.yd-about { padding: 6rem 0; background: #ffffff; }

.yd-about__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) { .yd-about__inner { grid-template-columns: 1fr 1fr; gap: 7rem; } }

.yd-about__img-wrap { position: relative; }

.yd-about__img-frame {
  aspect-ratio: 9/16;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(157, 215, 115, 0.1);
  position: relative;
  z-index: 1;
}
.yd-about__img-frame img { width: 100%; height: 100%; object-fit: cover; }

.yd-about__img-deco {
  display: none;
  position: absolute;
  top: 2.5rem;
  right: -2.5rem;
  width: 420px;
  height: calc(420px * 16 / 9);
  border-radius: var(--radius-card);
  border: 2px solid rgba(157, 215, 115, 0.2);
  z-index: 0;
}
@media (min-width: 768px) { .yd-about__img-deco { display: block; } }

.yd-about__title {
  font-family: var(--font-display) !important;
  font-size: clamp(2.25rem, 4vw, 3.5rem) !important;
  font-weight: 700 !important;
  color: var(--foreground) !important;
  margin: 0 0 1.5rem !important;
  line-height: 1.15 !important;
  -webkit-font-smoothing: antialiased;
}

.yd-about__title em { color: var(--primary); font-style: normal; }

.yd-about__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  color: rgba(13,31,60,0.8) !important;
  font-size: 1.05rem !important;
  line-height: 1.75 !important;
  margin: 0 0 1.5rem;
}

.yd-about__body p { margin: 0; }
.yd-about__body p:last-child { font-weight: 600; color: var(--foreground); }

.yd-about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 2.5rem;
}

.yd-stat__number { font-family: var(--font-display) !important; font-size: 2.5rem !important; font-weight: 700 !important; color: var(--primary) !important; margin: 0 0 0.25rem !important; }
.yd-stat__label { font-size: 0.95rem; font-weight: 500; color: rgba(13,31,60,0.7); margin: 0; }

/* ================================================================
   PRODUCTOS
   ================================================================ */
.yd-products { padding: 6rem 0; background: white; position: relative; }

.yd-products__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.yd-section-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 5rem;
}

.yd-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 48px);
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 1rem;
  -webkit-font-smoothing: antialiased;
  white-space: normal;
}

.yd-section-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: rgba(13,31,60,0.7);
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

/* Grid */
.yd-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 640px) { .yd-products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .yd-products__grid { grid-template-columns: repeat(3, 1fr); } }

/* Tarjeta */
.yd-card {
  border-radius: var(--radius-card);
  padding: 1.5rem;
  border: 1px solid rgba(157, 215, 115, 0.1);
  background: var(--background);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.yd-card:hover { box-shadow: var(--shadow-card); border-color: rgba(157, 215, 115, 0.4); }
.yd-card--promo:hover { box-shadow: 0 8px 32px rgba(249, 115, 22, 0.18); border-color: rgba(249, 115, 22, 0.4); }

.yd-card--out { background: #f9fafb; border-color: #e5e7eb; }
.yd-card--out:hover { box-shadow: 0 1px 8px rgba(0,0,0,0.05); border-color: #e5e7eb; }

.yd-card__badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-block;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 1.15rem;
  font-weight: 700;
  background: var(--primary);
  color: white;
}

.yd-card__badge--out { background: var(--sold-out); }

.yd-card__img-wrap {
  aspect-ratio: 1/1;
  border-radius: 1rem;
  overflow: hidden;
  background: #e0f0fa;
  margin-bottom: 0rem;
  position: relative;
  height: 340px;
  max-height: 340px;
}
.yd-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.yd-card:hover .yd-card__img-wrap img { transform: scale(1.05); }

.yd-card__sold-out-overlay { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.yd-card__sold-out-label {
  background: var(--sold-out);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.yd-card__body { flex: 1; display: flex; flex-direction: column; padding-top: 0.25rem; }

.yd-wholesale__title {
  font-family: "Instrument Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin: 0 0 0.5rem;
  -webkit-font-smoothing: antialiased;
}

.yd-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: rgba(13,31,60,0.65);
  margin: 0 0 1.5rem;
  flex: 1;
  line-height: 1.6;
}

.yd-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }

.yd-card__price {
  font-family: "Instrument Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.yd-card__price--out { color: #9ca3af; }
.yd-card__price--original { color: #9ca3af; font-size: 1rem; font-weight: 600; text-decoration: line-through; text-decoration-color: #F97316; }
.yd-card__price--promo { color: #F97316; }
.yd-card__out-text { font-size: 0.875rem; color: #f87171; font-weight: 600; }

/* Mayorista */
.yd-wholesale {
  background: var(--dark-bg);
  border-radius: 1.5rem;
  padding: 3rem 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .yd-wholesale {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.yd-wholesale__title {
  font-family: "Instrument Sans", sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem;
  -webkit-font-smoothing: antialiased;
}

.yd-wholesale__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.25rem;
  margin: 0;
  max-width: 36rem;
  line-height: 1.6;
}

.yd-wholesale__desc strong {
  color: var(--primary-light);
  font-weight: 600;
}

/* Ribbon 3x2 — card */
.yd-card__promo-ribbon {
  position: absolute;
  top: 28px;
  left: -34px;
  width: 160px;
  background: #F97316;
  color: #ffffff;
  font-family: "Instrument Sans", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  padding: 6px 0;
  transform: rotate(-45deg);
  z-index: 3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  pointer-events: none;
}

@media (max-width: 639px) {
  .yd-products {
    padding: 3rem 0;
  }
  .yd-section-header {
    margin: 0 auto 3rem;
  }
  .yd-card__footer {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .yd-card__price,
  .yd-card__price--promo,
  .yd-card__price--original {
    font-size: 1.1rem;
  }
  .yd-card__footer form,
  .yd-card__footer .yd-btn {
    width: 100%;
    text-align: center;
  }
}
.yd-card__name a { font-weight: 800; }

/* ================================================================
   BENEFICIOS
   ================================================================ */
.yd-benefits { padding: 0 0 4rem; background: hsla(140, 33%, 93%, 1.00); color: #000; }

.yd-benefits__inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.yd-benefits .yd-section-header { margin-bottom: 4rem; }
.yd-benefits .yd-section-title { color: #000; }
.yd-benefits .yd-section-subtitle { color: rgba(0,0,0,0.6); }

.yd-benefits__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .yd-benefits__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .yd-benefits__grid { grid-template-columns: repeat(4, 1fr); } }

.yd-benefit-card {
  background: #ffffff;
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: background 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.yd-benefit-card:hover { background: #f7fdf3; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }


.yd-benefit-card__icon { width: 5rem; height: 5rem; background: hsla(140, 33%, 93%, 1.00); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 2.5rem; }
.yd-benefit-card__icon svg { width: 3rem; height: 3rem; color: var(--primary); stroke: var(--primary); }
.yd-benefit-card__title { font-family: "Instrument Sans", sans-serif; font-size: 20px; font-weight: 700; -webkit-font-smoothing: antialiased; margin: 0 0 1.5rem; color: #000; }
.yd-benefit-card__text { font-family: Inter, sans-serif; font-size: 14px; -webkit-font-smoothing: antialiased; color: hsl(138, 25%, 40%); line-height: 1.6; margin: 0; }

/* ================================================================
   TESTIMONIOS
   ================================================================ */
.yd-testimonials { padding: 8rem 0; background: var(--background); }
.yd-testimonials__inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.yd-testimonials__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 768px) { .yd-testimonials__grid { grid-template-columns: repeat(3, 1fr); } }

.yd-testimonial { background: white; padding: 32px; border-radius: var(--radius-card); box-shadow: 0 4px 24px rgba(0,0,0,0.05); border: 1px solid var(--border); aspect-ratio: 1 / 1; display: flex; flex-direction: column; justify-content: flex-start; gap: 1.5rem; }

.yd-testimonial__stars { color: #facc15; font-size: 20px; line-height: 24px; letter-spacing: 2px; margin-bottom: 1.5rem; }
.yd-testimonial__text { font-family: Inter, sans-serif; font-size: 20px; font-style: italic; color: rgba(13,31,60,0.8); line-height: 1.6; -webkit-font-smoothing: antialiased; margin: 0; }
.yd-testimonial__name { font-family: "Instrument Sans", sans-serif; font-size: 16px; font-weight: 700; color: var(--foreground); -webkit-font-smoothing: antialiased; margin: 0 0 4px; }
.yd-testimonial__role { font-family: Inter, sans-serif; font-size: 14px; color: rgba(13,31,60,0.6); -webkit-font-smoothing: antialiased; margin: 0; }

/* ================================================================
   FOOTER
   ================================================================ */
.yd-footer {background: #1a5c38; color: white; padding: 5rem 0 2.5rem; }
.yd-footer__inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.yd-footer__grid { display: grid; grid-template-columns: 1fr; gap: 5rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .yd-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .yd-footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }

.yd-footer__logo { display: flex; align-items: center; gap: 0.25rem; margin-bottom: 1.5rem; }
.yd-footer__logo-yadoms { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--primary-light); }
.yd-footer__logo-arg { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: white; }
.yd-footer__tagline { color: rgba(255,255,255,0.7); line-height: 1.6; margin: 0 0 1.5rem; }

.yd-social { display: flex; gap: 1rem; }
.yd-social__link { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.2s; }
.yd-social__link:hover { color: white; }
.yd-social__link--ig:hover { background: #E1306C; }
.yd-social__link--tt:hover { background: white; color: black; }
.yd-social__link--wa:hover { background: var(--whatsapp); }
.yd-social__link svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }

.yd-footer__heading { font-family: "Instrument Sans", sans-serif; font-size: 18px; font-weight: 700; -webkit-font-smoothing: antialiased; color: white; margin: 0 0 1.5rem; }
.yd-footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.yd-footer__links a { font-family: Inter, sans-serif; font-size: 16px; color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.yd-footer__links a:hover { color: var(--primary-light); }

.yd-footer__contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1rem; }
.yd-footer__contact li { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.7); font-family: Inter, sans-serif; font-size: 16px; white-space: nowrap; }
.yd-footer__contact svg { width: 20px; height: 20px; color: var(--primary-light); flex-shrink: 0; stroke: var(--primary-light); }
.yd-footer__contact a { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.2s; }
.yd-footer__contact a:hover { color: var(--primary-light); }

.yd-footer__wholesale-box { margin-top: 1.5rem; padding: 1rem; border-radius: 1rem; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.1); }
.yd-footer__wholesale-box p { margin: 0 0 0.5rem; }
.yd-footer__wholesale-box p:first-child { font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.8); margin-bottom: 0.5rem; }
.yd-footer__wholesale-box p:nth-child(2) { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 0.75rem; }
.yd-footer__wholesale-box a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; background: var(--primary-light); color: white; font-family: Inter, sans-serif; font-size: 14px !important; font-weight: 600; -webkit-font-smoothing: antialiased; border-radius: 0.75rem; padding: 10px 16px !important; text-decoration: none; transition: background 0.2s; }
.yd-footer__wholesale-box a:hover { background: #5a9acf; }
.yd-footer__wholesale-box a svg { width: 16px; height: 16px; }

.yd-newsletter { display: flex; flex-direction: column; gap: 0.75rem; }
.yd-newsletter__input { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 0.75rem; padding: 0.875rem 1rem; color: white; font-size: 0.9rem; outline: none; transition: border-color 0.2s; width: 100%; }
.yd-newsletter__input::placeholder { color: rgba(255,255,255,0.4); }
.yd-newsletter__input:focus { border-color: var(--primary-light); }
.yd-newsletter__submit { background: var(--primary-light); color: white; font-weight: 600; border-radius: 0.75rem; padding: 0.875rem 1rem; border: none; cursor: pointer; transition: background 0.2s; font-size: 0.9rem; }
.yd-newsletter__submit:hover { background: #5a9acf; }

.yd-footer__bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; color: rgba(255,255,255,0.5); font-size: 0.875rem; }
@media (min-width: 768px) { .yd-footer__bottom { flex-direction: row; } }
.yd-footer__bottom-links { display: flex; gap: 1.5rem; }
.yd-footer__bottom a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.yd-footer__bottom a:hover { color: white; }

/* ================================================================
   WHATSAPP FLOTANTE
   ================================================================ */
.yd-wa-float {
  position: fixed;
  bottom: 5rem;
  right: 1.5rem;
  z-index: 100;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: var(--whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.yd-wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.6); }
.yd-wa-float svg { width: 1.75rem; height: 1.75rem; fill: white; }

/* ================================================================
   PÃGINA DE PRODUCTO PERSONALIZADA
   ================================================================ */
.yd-product-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  background: #fafaf8;
}

.yd-product-page__breadcrumb { font-size: 0.8rem; color: rgba(13,31,60,0.5); margin-bottom: 2rem; }
.yd-product-page__breadcrumb a { color: var(--primary); text-decoration: none; }
.yd-product-page__breadcrumb a:hover { text-decoration: underline; }

.yd-product-page__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: start; }
@media (min-width: 768px) { .yd-product-page__grid { grid-template-columns: 1fr 1fr; } }

.yd-product-page__img-wrap { border-radius: 1.5rem; overflow: hidden; box-shadow: 0 20px 50px rgba(157, 215, 115, 0.12); max-width: 480px; }
.yd-product-page__img-wrap img { width: 100%; height: auto; display: block; }

.yd-product-page__vendor { color: var(--primary); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin: 0 0 0.5rem; }
.yd-product-page__title {font-family: var(--font-display); font-size: clamp(1.75rem, 4vw, 2.5rem); font-weight: 700; color: var(--foreground); line-height: 1.2; margin: 0 0 1rem; }
.yd-product-page__price { font-size: 1.75rem; font-weight: 700; color: var(--primary); margin: 0 0 1.5rem; }

.yd-product-page__promo {
  margin-bottom: 0.5rem;
}

.yd-product-page__promo p {
  margin: 0;
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.6;
}

.yd-product-page__promo a {
  color: #25D366;
  font-weight: 600;
  text-decoration: none;
}

.yd-product-page__shipping {
  margin-bottom: 1.5rem;
}

.yd-product-page__shipping p {
  margin: 0;
  font-size: 1rem;
  color: var(--foreground);
  line-height: 1.6;
}

.yd-product-page__quantity { margin-bottom: 1rem; }
.yd-product-page__quantity label { font-size: 0.875rem; font-weight: 600; color: var(--foreground); display: block; margin-bottom: 0.5rem; }
.yd-product-page__qty-add-row { display: flex; align-items: flex-end; gap: 1rem; margin-bottom: 1.5rem; }
.yd-product-page__qty-wrap { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; width: fit-content; }

.yd-product-page__qty-wrap button { background: none; border: none; padding: 0.5rem 1rem; font-size: 1.25rem; cursor: pointer; color: var(--foreground); transition: background 0.2s; }
.yd-product-page__qty-wrap button:hover { background: var(--secondary); color: var(--primary); }
.yd-product-page__qty-wrap input { width: 3rem; text-align: center; border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border); font-size: 1rem; font-weight: 600; padding: 0.5rem 0; outline: none; }

.yd-product-page__add { width: auto; padding: 0.85rem 2rem; background: var(--primary); color: white; border: none; border-radius: var(--radius-btn); font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.3s; box-shadow: 0 8px 24px rgba(157, 215, 115, 0.3); margin-bottom: 8px; margin-left: 1rem; }
.yd-product-page__add:hover { background: #7ab84e; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(157, 215, 115, 0.4); }
.yd-product-page__add:hover { background: #7ab84e; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(157, 215, 115, 0.4); }

.yd-product-page__desc {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  color: rgba(13, 31, 60, 0.75);
  font-size: 1.1rem;
  line-height: 2;
}

/* Relacionados */
.yd-product-page__related { background: var(--background); padding: 4rem 0; border-top: 1px solid var(--border); }
.yd-product-page__related-inner { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.yd-product-page__related h2 { font-size: 1.75rem; font-weight: 700; color: var(--foreground); margin: 0 0 2rem; }
.yd-product-page__related-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
@media (min-width: 768px) { .yd-product-page__related-grid { grid-template-columns: repeat(3, 1fr); } }

.yd-product-page__related-card { text-decoration: none; border-radius: var(--radius-card); border: 1px solid rgba(157, 215, 115, 0.1); overflow: hidden; background: white; transition: box-shadow 0.3s, transform 0.3s; display: block; }
.yd-product-page__related-card:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.yd-product-page__related-img { aspect-ratio: 1/1; overflow: hidden; background: #e8f7d8; }
.yd-product-page__related-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.yd-product-page__related-card:hover img { transform: scale(1.05); }
.yd-product-page__related-card h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin: 0.75rem 1rem 0.25rem; }
.yd-product-page__related-card p { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin: 0 1rem 1rem; }

/* ================================================================
   SECCIÃ“N INFO EXTRA PRODUCTO
   ================================================================ */
.yd-product-info-extra { background: white; border-top: 1px solid var(--border); padding: 4rem 0; }
.yd-product-info-extra__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
}


.yd-product-info-extra__inner p { margin: 0 0 1rem; }

.yd-product-info-extra__inner strong { font-weight: 700; }

.yd-product-info-extra__inner em { font-style: italic; }

.yd-product-info-extra__inner ul {
  padding-left: 1.25rem;
  margin: 0 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.yd-product-info-extra__inner ul li { line-height: 1.6; }
.yd-product-info-extra__inner p { margin: 0 0 1rem; }
.yd-product-info-extra__inner h2 {
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: var(--foreground);
  margin: 2rem 0 1rem;
}
.yd-product-info-extra__inner ul { padding-left: 1.25rem; margin: 0 0 1rem; display: flex; flex-direction: column; gap: 0.5rem; }
.yd-product-info-extra__inner ul li { line-height: 1.6; }

.yd-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.yd-product-info-extra__cta { background: linear-gradient(135deg, #f2fce8, #e8f7d8); border: 1px solid rgba(157, 215, 115, 0.2); border-radius: var(--radius-card); padding: 2rem; text-align: center; margin-top: 2rem; }
.yd-product-info-extra__cta h2 { margin-top: 0; color: var(--primary); }
.yd-product-info-extra__cta p { color: var(--foreground); font-size: 1.05rem; }

/* ================================================================
   UTILIDADES
   ================================================================ */
.yd-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.yd-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

.yd-benefit-card { display: flex; flex-direction: column; justify-content: flex-start; }

#shopify-section-template--20806904021157__yadoms_product_bX3ene {
  padding-top: 100px;
}

#shopify-section-template--20806904021157__yadoms_product_bX3ene * {
  font-size: 16px !important;
}
#shopify-section-template--20806904021157__yadoms_product_bX3ene h1 {
  font-size: 28px !important;
}

#shopify-section-template--20806904021157__yadoms_product_bX3ene .vendor {
  font-size: 18px !important;
}

#shopify-section-template--20806904021157__yadoms_product_bX3ene .yd-product-page__price {
  font-size: 28px !important;
  color: #9dd773 !important;
}
.yd-btn--sm {
  font-size: 1.35rem !important;
  padding: 1rem 2rem !important;
}
.yd-btn--sm::before {
  content: "+";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
}

@media (max-width: 767px) {
  .yd-btn--sm {
    font-size: 1rem !important;
    padding: 0.65rem 1rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .yd-btn--sm::before {
    font-size: 1.1rem;
  }
}

@media (max-width: 767px) {
  .yd-card__badge {
    font-size: 0.7rem !important;
    padding: 0.25rem 0.6rem !important;
    top: 0.5rem !important;
    right: 0.5rem !important;
  }
}

.yd-card__out-text {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

#shopify-section-template--20806904021157__yadoms_product_bX3ene .yd-product-info-extra__inner h2 {
  font-size: 40px !important;
  font-weight: 700 !important;
}

@media (max-width: 767px) {

  /* Evitar desborde general */
  html, body { overflow-x: hidden !important; width: 100% !important; }

  /* General */
  .yd-container,
  .yd-products__inner,
  .yd-benefits__inner,
  .yd-testimonials__inner,
  .yd-footer__inner,
  .yd-product-page,
  .yd-product-page__related-inner,
  .yd-product-info-extra__inner {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  /* Título de sección */
  .yd-section-title { font-size: 28px !important; white-space: normal !important; }

  /* Hero */
  .yd-hero { padding-top: 7rem; min-height: auto; }
  .yd-hero__overlay {
    background: linear-gradient(to bottom, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.85) 100%) !important;
  }

  /* Mayorista */
  .yd-wholesale { padding: 2rem 1.5rem; }

  /* Producto page */
  .yd-product-page__qty-add-row { flex-wrap: wrap; }
  .yd-product-page__add { margin-left: 0 !important; width: 100% !important; }

  /* Info extra */
  .yd-product-info-extra__inner h2 { font-size: 28px !important; }
  #shopify-section-template--20806904021157__yadoms_product_bX3ene .yd-product-info-extra__inner h2 { font-size: 28px !important; }

  /* Relacionados */
  .yd-product-page__related-grid { grid-template-columns: 1fr !important; }

  /* Footer contacto */
  .yd-footer__contact li { white-space: normal; }

  /* Testimonios */
  .yd-testimonial { aspect-ratio: auto; }
  .yd-testimonials__grid { grid-template-columns: 1fr !important; }

  /* Grid de productos: 2 columnas */
  .yd-products__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem !important;
    overflow: hidden !important;
  }

  /* Tarjetas */
  .yd-card { min-width: 0 !important; padding: 0.75rem !important; }
  .yd-card__img-wrap { height: 180px !important; max-height: 180px !important; }
    .yd-card__name { font-size: 1.35rem !important; }
  .yd-card__desc { font-size: 0.85rem !important; }
 .yd-card__price { font-size: 1.2rem !important; }

  /* Beneficios: 2 columnas */
  .yd-benefits__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 1.5rem !important; }

  /* Footer: 2 columnas */
  .yd-footer__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 2rem !important; }

  /* Header */
  .yd-header { width: 100% !important; left: 0 !important; right: 0 !important; }
  .yd-header__inner { padding: 0 1rem !important; display: flex !important; align-items: center !important; justify-content: space-between !important; width: 100% !important; max-width: 100% !important; }
  .yd-header__nav { display: none !important; }
  .yd-header__nav.is-open { display: flex !important; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column !important; padding: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.1); z-index: 999; }
  .yd-header__hamburger { display: flex !important; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 0.5rem; order: 0 !important; }
  .yd-header__hamburger span { display: block; width: 24px; height: 2px; background: var(--foreground); border-radius: 2px; transition: all 0.3s; }
  .yd-header__logo { order: 1 !important; margin: 0 auto !important; }
  .yd-header__actions { order: 2 !important; }

  /* Announcement bar */
  .yd-announcement { overflow: hidden !important; width: 100% !important; }
  .yd-announcement__track { white-space: nowrap !important; font-size: 0.75rem !important; }
}
section#about .yd-about__body p,
section#about .yd-about__body {
  font-family: "Inter", sans-serif !important;
  font-size: 18px !important;
  line-height: 1.8 !important;
  letter-spacing: 0 !important;
  color: rgba(13,31,60,0.8) !important;
}
section#about .yd-about__title {
  font-size: 48px !important;
  line-height: 1.15 !important;
  letter-spacing: 0 !important;
}
section#about .yd-stat__number {
  font-size: 30px !important;
  letter-spacing: 0 !important;
}

section#about .yd-stat__label {
  font-size: 14px !important;
  letter-spacing: 0 !important;
}
section#about .yd-about__img-wrap {
  position: relative !important;
  width: 100% !important;
  height: auto !important;
  overflow: hidden !important;
}

section#about .yd-about__img-frame {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 9/16 !important;
}

@media (max-width: 767px) {
  section#about .yd-about__img-frame {
    aspect-ratio: unset !important;
    height: auto !important;
    max-height: none !important;
    width: 100% !important;
    overflow: hidden !important;
  }
  section#about .yd-carousel__track {
    height: auto !important;
    align-items: flex-start !important;
  }
  section#about .yd-carousel__slide {
    height: auto !important;
    min-width: 100% !important;
    max-width: 100% !important;
  }
  section#about .yd-vid-wrap {
    height: auto !important;
  }
  section#about .yd-carousel__video {
    width: 100% !important;
    height: auto !important;
    object-fit: unset !important;
    background: transparent !important;
  }
}

section#about .yd-about__img-deco {
  display: block !important;
  position: absolute !important;
  top: 3.5rem !important;
  right: -3.5rem !important;
  width: min(420px, 90%) !important;
  height: calc(min(420px, 90%) * 16 / 9) !important;
  border-radius: var(--radius-card) !important;
  border: 2px solid rgba(157, 215, 115, 0.3) !important;
  z-index: 0 !important;
}

@media (max-width: 1100px) {
  section#about .yd-about__img-deco {
    display: none !important;
  }
}

/* Beneficios - layout horizontal en mobile, solo ícono + título */
@media screen and (max-width: 749px) {
  .yd-benefits__grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4px !important;
    padding: 0 4px !important;
  }

  .yd-benefit-card {
    flex: 1 1 0 !important;
    min-width: 0 !important;
    padding: 10px 4px !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .yd-benefit-card__icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    padding: 6px !important;
  }

  .yd-benefit-card__icon svg {
    width: 22px !important;
    height: 22px !important;
  }

  .yd-benefit-card__title {
    font-size: 12px !important;
    line-height: 1.2 !important;
    margin: 1px 0 0 !important;
  }

  .yd-benefit-card__text {
    display: none !important;
  }
}
/* Testimonios - 2 columnas x 2 filas en mobile */
@media screen and (max-width: 749px) {
  .yd-testimonials__grid {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    padding: 0 8px !important;
    justify-content: center !important;
  }

  .yd-testimonial {
    flex: 0 0 calc(50% - 4px) !important;
    min-width: 0 !important;
    padding: 10px 8px !important;
    box-sizing: border-box !important;
  }

  .yd-testimonial__stars {
    font-size: 11px !important;
    margin-bottom: 4px !important;
  }

  .yd-testimonial__text {
    font-size: 10px !important;
    line-height: 1.4 !important;
    margin-bottom: 6px !important;
  }

  .yd-testimonial__name {
    font-size: 10px !important;
    margin: 0 !important;
  }

  .yd-testimonial__role {
    font-size: 9px !important;
    margin: 0 !important;
  }
}
/* Footer - mobile */
@media screen and (max-width: 749px) {
  .yd-footer__grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 16px !important;
  }

  .yd-footer__grid > div:nth-child(1) {
    grid-column: 1 !important;
  }

  .yd-footer__grid > div:nth-child(2) {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .yd-footer__grid > div:nth-child(3) {
    grid-column: 1 / -1 !important;
    grid-row: 3 !important;
  }

  .yd-footer__grid > div:nth-child(4) {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    text-align: center !important;
  }

  .yd-footer__grid > div:nth-child(4) .yd-footer__heading {
    font-size: 16px !important;
    margin-bottom: 10px !important;
  }

  .yd-footer__grid > div:nth-child(4) .yd-footer__tagline {
    font-size: 13px !important;
    line-height: 1.5 !important;
    margin-bottom: 12px !important;
  }

  /* Explorar - todo más compacto */
  .yd-footer__grid > div:nth-child(2) .yd-footer__heading {
    font-size: 10px !important;
    margin-bottom: 4px !important;
  }

  .yd-footer__links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 3px 6px !important;
    padding: 0 !important;
    list-style: none !important;
    margin: 0 !important;
  }

    .yd-footer__links li {
    font-size: 6px !important;
    margin-bottom: 1px !important;
  }

  .yd-footer__links li a {
    font-size: 6px !important;
  }

  .yd-footer__heading {
    font-size: 13px !important;
    margin-bottom: 8px !important;
  }

  .yd-footer__contact li {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }

  .yd-footer__tagline {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }

  .yd-footer__wholesale-box {
    font-size: 10px !important;
    padding: 10px !important;
  }

  .yd-newsletter__input {
    font-size: 13px !important;
    padding: 10px !important;
    text-align: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .yd-newsletter__submit {
    font-size: 13px !important;
    padding: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .yd-footer__bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    font-size: 10px !important;
  }

  .yd-footer__bottom-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center !important;
  }
.yd-reveal {
  opacity: 0 !important;
  transform: translateY(28px) !important;
  transition: opacity 0.6s ease, transform 0.6s ease !important;
}
.yd-reveal.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* ================================================================
   HERO ANIMATIONS — YADOMS ARG
   Scoped al section ID para no pisar nada
   ================================================================ */

#shopify-section-template--20806903857317__yadoms_hero_VtzhXW .yd-badge {
  opacity: 0;
  animation: yd-anim-down 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s forwards;
}

#shopify-section-template--20806903857317__yadoms_hero_VtzhXW .yd-hero__title {
  opacity: 0;
  transform: scale(0.75);
  animation: yd-anim-zoom 0.85s cubic-bezier(0.34, 1.56, 0.64, 1) 0.35s forwards;
}

#shopify-section-template--20806903857317__yadoms_hero_VtzhXW .yd-hero__subtitle {
  opacity: 0;
  animation: yd-anim-up 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.6s forwards;
}

#shopify-section-template--20806903857317__yadoms_hero_VtzhXW .yd-hero__cta {
  opacity: 0;
  animation: yd-anim-up 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 0.8s forwards;
}

/* --- Keyframes con prefijo yd- para no colisionar --- */
@keyframes yd-anim-down {
  from { opacity: 0; transform: translateY(-24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes yd-anim-zoom {
  from { opacity: 0; transform: scale(0.75); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes yd-anim-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
