/* ============================================================
   SLANTH YOGA SPORTS — unified yoga activewear theme (yg2609a)
   Loaded LAST (after main/usaking/purple/brand-script) so the
   calm studio palette below wins over legacy watch/purple css.
   Palette: ivory canvas, forest ink, sage + clay accents.
   Type: Cormorant Garamond (display) + Outfit (body).
   ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400&family=Outfit:wght@300;400;500;600&display=swap");

:root {
  --yg-bg: #f7f4ee;
  --yg-surface: #ffffff;
  --yg-ink: #262b25;
  --yg-muted: #6f756a;
  --yg-forest: #31473a;
  --yg-forest-deep: #253830;
  --yg-sage: #7d8f7b;
  --yg-sage-soft: #e6ebdf;
  --yg-sand: #eae3d5;
  --yg-line: #e4ddcf;
  --yg-clay: #b9714f;
  --yg-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --yg-sans: "Outfit", "Helvetica Neue", Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  --yg-shadow: 0 18px 44px rgba(38, 43, 37, 0.09);
  --yg-radius: 16px;
}

/* ---------- base ---------- */
html body {
  background: var(--yg-bg) !important;
  color: var(--yg-ink) !important;
  font-family: var(--yg-sans) !important;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
html body h1, html body h2, html body h3,
html body .uk-hero-copy h1, html body .article-header h1 {
  font-family: var(--yg-serif) !important;
  font-weight: 500 !important;
  color: var(--yg-ink) !important;
  letter-spacing: 0.005em;
}
html body h1 { line-height: 1.08; }
html body h2 { line-height: 1.15; }
html body a { color: var(--yg-forest); }
html body a:hover { color: var(--yg-forest-deep); }
::selection { background: var(--yg-sage-soft); color: var(--yg-forest-deep); }

/* section scaffolding */
html body .uk-section { padding: 88px 0; }
html body .uk-shell, html body .shell { max-width: 1240px; }
html body .uk-section-head { margin-bottom: 40px; }
html body .uk-section-head h2,
html body .site-footer h4, html body .footer-business-info h4 {
  font-family: var(--yg-serif) !important;
}
html body .uk-section-head h2 { font-size: clamp(30px, 3.6vw, 44px); font-weight: 500 !important; margin: 0 0 8px; }
html body .uk-section-head p { color: var(--yg-muted); font-size: 15.5px; margin: 0 0 18px; }

/* ---------- buttons ---------- */
html body .uk-btn,
html body .btn-dark,
html body #checkout-button,
html body button#checkout-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px !important;
  padding: 14px 30px !important;
  font-family: var(--yg-sans) !important;
  font-size: 12.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1px solid transparent;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
  cursor: pointer;
}
html body .uk-btn:hover { transform: translateY(-1px); }
html body .uk-btn-solid,
html body .btn-dark,
html body #checkout-button {
  background: var(--yg-forest) !important;
  color: #fdfcf9 !important;
  border-color: var(--yg-forest) !important;
}
html body .uk-btn-solid:hover,
html body .btn-dark:hover,
html body #checkout-button:hover {
  background: var(--yg-forest-deep) !important;
  border-color: var(--yg-forest-deep) !important;
  color: #fff !important;
}
html body .uk-btn-ghost {
  background: transparent !important;
  color: var(--yg-ink) !important;
  border-color: rgba(38, 43, 37, 0.35) !important;
}
html body .uk-btn-ghost:hover { border-color: var(--yg-ink) !important; background: rgba(38, 43, 37, 0.05) !important; }
html body .uk-btn-outline {
  background: transparent !important;
  color: var(--yg-forest) !important;
  border-color: var(--yg-forest) !important;
}
html body .uk-btn-outline:hover { background: var(--yg-forest) !important; color: #fdfcf9 !important; }

/* ---------- header ---------- */
html body .site-header {
  background: rgba(247, 244, 238, 0.92) !important;
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--yg-line) !important;
  box-shadow: none !important;
}
html body .brand-name {
  font-family: var(--yg-serif) !important;
  font-weight: 600 !important;
  font-size: 21px !important;
  letter-spacing: 0.22em !important;
  color: var(--yg-ink) !important;
  text-transform: uppercase;
}
html body .nav-link .nav-link-text,
html body .nav-menu-btn {
  font-family: var(--yg-sans) !important;
  font-size: 11.5px !important;
  font-weight: 500 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase;
  color: var(--yg-ink) !important;
}
html body .nav-link { position: relative; }
html body .nav-link .nav-link-text { padding-bottom: 3px; }
html body .main-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--yg-forest);
  transition: right 0.28s ease;
}
html body .main-nav .nav-link:hover::after,
html body .main-nav .nav-link.active::after { right: 0; }
html body .header-icon { color: var(--yg-ink) !important; }
html body .cart-count {
  background: var(--yg-clay) !important;
  color: #fff !important;
  border-radius: 999px;
}

/* ---------- hero (new homepage) ---------- */
html body .yg-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(125, 143, 123, 0.20), transparent 62%),
    radial-gradient(760px 420px at -8% 108%, rgba(185, 113, 79, 0.10), transparent 60%),
    linear-gradient(180deg, #f7f4ee 0%, #f2eee4 100%);
  padding: 64px 0 88px;
}
html body .yg-hero-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.85fr);
  gap: 56px;
  align-items: center;
}
html body .yg-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--yg-forest);
  margin: 0 0 22px;
}
html body .yg-hero-kicker::before {
  content: "";
  width: 34px; height: 1px;
  background: var(--yg-sage);
}
html body .yg-hero h1 {
  font-size: clamp(42px, 5.6vw, 72px) !important;
  margin: 0 0 22px;
}
html body .yg-hero h1 em {
  font-style: italic;
  color: var(--yg-forest);
}
html body .yg-hero-lead {
  font-size: 17px;
  font-weight: 300;
  color: var(--yg-muted);
  max-width: 46ch;
  margin: 0 0 34px;
  line-height: 1.75;
}
html body .yg-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
html body .yg-hero-note {
  margin-top: 30px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--yg-muted);
  text-transform: uppercase;
}
html body .yg-hero-note span { margin-right: 18px; white-space: nowrap; }
html body .yg-hero-note span::before {
  content: "✦";
  color: var(--yg-sage);
  margin-right: 8px;
  font-size: 11px;
}
html body .yg-hero-media { position: relative; }
html body .yg-hero-media-img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 22%;
  border-radius: 300px 300px 22px 22px;
  box-shadow: var(--yg-shadow);
}
html body .yg-hero-tag {
  position: absolute;
  left: 18px;
  bottom: 26px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--yg-line);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yg-forest);
}

/* legacy video-hero safety (other pages) */
html body .uk-hero.video-hero { min-height: 560px; }
html body .uk-hero .uk-hero-kicker {
  font-size: 12px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--yg-forest); font-weight: 500;
}

/* ---------- category tiles ---------- */
html body .yg-cats-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
html body .yg-cat-tile {
  position: relative;
  display: block;
  border-radius: var(--yg-radius);
  overflow: hidden;
  background: var(--yg-surface);
  border: 1px solid var(--yg-line);
  text-decoration: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
html body .yg-cat-tile:hover { transform: translateY(-4px); box-shadow: var(--yg-shadow); }
html body .yg-cat-media { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--yg-sand); }
html body .yg-cat-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
html body .yg-cat-tile:hover .yg-cat-media img { transform: scale(1.05); }
html body .yg-cat-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-family: var(--yg-serif) !important;
  font-size: 21px;
  font-weight: 500;
  color: var(--yg-ink) !important;
}
html body .yg-cat-label small {
  font-family: var(--yg-sans) !important;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yg-sage);
}

/* ---------- category pills (data-uk-brands) ---------- */
html body .uk-brands-row { display: flex; flex-wrap: wrap; gap: 10px; }
html body .uk-brand-pill,
html body .uk-brand-pill[data-tone] {
  background: var(--yg-surface) !important;
  border: 1px solid var(--yg-line) !important;
  color: var(--yg-ink) !important;
  border-radius: 999px !important;
  padding: 10px 22px !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.22s ease;
  box-shadow: none !important;
}
html body .uk-brand-pill:hover {
  background: var(--yg-forest) !important;
  border-color: var(--yg-forest) !important;
  color: #fdfcf9 !important;
}

/* ---------- product cards ---------- */
html body .uk-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
html body .uk-product-card {
  display: block;
  background: var(--yg-surface);
  border: 1px solid var(--yg-line);
  border-radius: var(--yg-radius);
  overflow: hidden;
  text-decoration: none !important;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
html body .uk-product-card:hover { transform: translateY(-4px); box-shadow: var(--yg-shadow); }
html body .uk-product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--yg-sand);
}
html body .uk-product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
html body .uk-product-card:hover .uk-product-media img { transform: scale(1.045); }
html body .uk-product-badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
  background: var(--yg-sage-soft) !important;
  color: var(--yg-forest) !important;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 5px 12px;
}
html body .uk-product-card .uk-product-category,
html body .product-card-category {
  display: block;
  margin: 14px 16px 0 !important;
  font-size: 10.5px !important;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yg-sage) !important;
}
html body .uk-product-title,
html body h3.uk-product-title {
  font-family: var(--yg-sans) !important;
  font-size: 14.5px !important;
  font-weight: 400 !important;
  color: var(--yg-ink) !important;
  line-height: 1.45;
  margin: 6px 16px 0 !important;
  padding: 0 !important;
}
html body .uk-product-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 10px 16px 18px !important;
  padding: 0 !important;
}
html body .uk-price-now {
  font-family: var(--yg-sans) !important;
  font-size: 15.5px !important;
  font-weight: 600 !important;
  color: var(--yg-forest) !important;
  text-decoration: none !important;
  letter-spacing: 0.02em;
}
html body a.uk-price-now:hover { color: var(--yg-clay) !important; }
html body .uk-price-was {
  font-size: 12.5px;
  color: var(--yg-muted);
  text-decoration: line-through;
}

/* ---------- editorial band ---------- */
html body .yg-editorial {
  background: linear-gradient(160deg, var(--yg-forest-deep) 0%, var(--yg-forest) 100%);
  color: #f2efe6;
  padding: 96px 24px;
  text-align: center;
}
html body .yg-editorial-inner { max-width: 780px; margin: 0 auto; }
html body .yg-editorial-kicker {
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--yg-sage-soft);
  margin: 0 0 20px;
}
html body .yg-editorial h2 {
  color: #f7f4ee !important;
  font-size: clamp(28px, 3.4vw, 42px) !important;
  font-style: italic;
  font-weight: 500 !important;
  line-height: 1.3;
  margin: 0 0 30px;
}
html body .yg-editorial .uk-btn-ghost { color: #f2efe6 !important; border-color: rgba(242, 239, 230, 0.5) !important; }
html body .yg-editorial .uk-btn-ghost:hover { background: rgba(242, 239, 230, 0.12) !important; border-color: #f2efe6 !important; }

/* ---------- value strip ---------- */
html body .service-strip { background: transparent; padding: 0 0 88px; }
html body .service-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 0 24px;
}
html body .service-grid article {
  background: var(--yg-surface);
  border: 1px solid var(--yg-line);
  border-radius: var(--yg-radius);
  padding: 30px 28px;
}
html body .service-grid article span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--yg-sage-soft);
  color: var(--yg-forest);
  font-size: 18px;
  margin-bottom: 16px;
}
html body .service-grid h3 {
  font-family: var(--yg-serif) !important;
  font-size: 22px !important;
  margin: 0 0 8px;
}
html body .service-grid p { color: var(--yg-muted); font-size: 14px; margin: 0 0 14px; }
html body .service-grid article a {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 1px solid var(--yg-sage);
  padding-bottom: 2px;
}

/* ---------- reviews ---------- */
html body .uk-review-card {
  background: var(--yg-surface);
  border: 1px solid var(--yg-line);
  border-radius: var(--yg-radius);
  overflow: hidden;
}
html body .uk-review-stars .is-filled { color: var(--yg-clay) !important; }
html body .uk-review-verified { color: var(--yg-sage) !important; font-style: normal; }
html body .uk-review-product { color: var(--yg-ink) !important; }
html body .uk-btn-dark { background: var(--yg-forest) !important; color: #fdfcf9 !important; border-radius: 999px !important; }

/* ---------- blog ---------- */
html body .uk-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
html body .uk-blog-card {
  background: transparent;
  border: 0;
  display: block;
}
html body .uk-blog-card a { text-decoration: none !important; display: block; }
html body .uk-blog-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--yg-radius);
  background: var(--yg-sand);
  margin-bottom: 16px;
}
html body .uk-blog-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
html body .uk-blog-card:hover .uk-blog-media img { transform: scale(1.045); }
html body .uk-blog-card h3 {
  font-family: var(--yg-serif) !important;
  font-size: 23px !important;
  font-weight: 500 !important;
  line-height: 1.3;
  margin: 0 0 8px;
  color: var(--yg-ink) !important;
}
html body .uk-blog-card:hover h3 { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
html body .uk-blog-card p { color: var(--yg-muted); font-size: 14px; margin: 0; }
html body .uk-blog-grid .uk-blog-card:nth-child(n+7) { display: none; }

/* ---------- footer ---------- */
html body .site-footer {
  background: var(--yg-forest-deep) !important;
  color: rgba(242, 239, 230, 0.82) !important;
  border-top: 4px solid var(--yg-sage);
  padding: 64px 0 0;
}
html body .site-footer h4 {
  color: #f7f4ee !important;
  font-size: 13px !important;
  font-family: var(--yg-sans) !important;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
html body .site-footer a {
  color: rgba(242, 239, 230, 0.78) !important;
  text-decoration: none !important;
  font-size: 14px;
}
html body .site-footer a:hover { color: #fff !important; text-decoration: underline !important; text-underline-offset: 3px; }
html body .footer-business-info p { color: rgba(242, 239, 230, 0.66) !important; }
html body .footer-business-info strong { color: #f2efe6 !important; }
html body .footer-bottom { border-top: 1px solid rgba(242, 239, 230, 0.16); }
html body .footer-bottom p { color: rgba(242, 239, 230, 0.55) !important; font-size: 13px; }

/* ---------- search overlay / cart drawer ---------- */
html body .search-panel {
  background: var(--yg-surface);
  border-radius: var(--yg-radius);
}
html body #site-search-input {
  border: 1px solid var(--yg-line);
  border-radius: 999px;
  padding: 12px 20px;
  font-family: var(--yg-sans);
}
html body #site-search-input:focus { outline: 2px solid var(--yg-sage); outline-offset: 1px; }
html body .cart-drawer header { background: var(--yg-surface); }
html body .cart-drawer h2 { font-family: var(--yg-serif) !important; }

/* ---------- listing page ---------- */
html body .shop-sidebar,
html body .filters, html body .shop-filters {
  background: transparent;
}
html body .shop-main .product-card,
html body .product-grid .product-card,
html body .product-card {
  background: var(--yg-surface);
  border: 1px solid var(--yg-line);
  border-radius: var(--yg-radius);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
html body .shop-main .product-card:hover,
html body .product-grid .product-card:hover,
html body .product-card:hover { transform: translateY(-4px); box-shadow: var(--yg-shadow); }
html body .product-card .product-info h3,
html body .product-card h3 {
  font-family: var(--yg-sans) !important;
  font-weight: 400 !important;
  color: var(--yg-ink) !important;
}
html body .price-row .view-price-link,
html body a.view-price-link {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--yg-forest) !important;
  text-decoration: none;
}
html body .price-row .uk-price-now {
  font-size: 15px;
  font-weight: 600;
  color: var(--yg-forest) !important;
  text-decoration: none;
}

/* ---------- PDP ---------- */
html body h1.product-title,
html body .product-title,
html body #local-product-title {
  font-family: var(--yg-serif) !important;
  font-weight: 500 !important;
  color: var(--yg-ink) !important;
  line-height: 1.2;
}
html body .product-price, html body .price-now, html body .pdp-price,
html body .product-price .price, html body span.product-price {
  color: var(--yg-forest) !important;
  font-weight: 600 !important;
}
html body .product-price-note, html body .display-price-note { color: var(--yg-clay) !important; }
html body .product-gallery img, html body #local-product-cover { background: var(--yg-sand) !important; }
html body .product-gallery-thumb img { border-radius: 10px; }
html body .buy-buttons button, html body .add-to-cart, html body .buy-now,
html body button[class*="buy"], html body button[class*="cart"] {
  border-radius: 999px;
  font-family: var(--yg-sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- article / blog pages ---------- */
html body .article-header .eyebrow {
  font-size: 11.5px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--yg-sage);
}
html body .article-header h1 {
  font-size: clamp(32px, 4.4vw, 52px) !important;
  line-height: 1.15;
}
html body .article-meta, html body .article-meta time {
  color: var(--yg-muted);
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
html body .prose { font-size: 16.5px; line-height: 1.85; color: #33382f; }
html body .prose h2, html body .prose h3 { font-family: var(--yg-serif) !important; margin-top: 1.6em; }
html body .prose img { border-radius: var(--yg-radius); }
html body .article-end a { color: var(--yg-forest) !important; }

/* ---------- misc ---------- */
html body .trust-bar, html body .utility-bar {
  background: var(--yg-forest-deep) !important;
  color: rgba(242, 239, 230, 0.9) !important;
}
html body img { max-width: 100%; }

/* ---------- responsive ---------- */
@media (max-width: 1080px) {
  html body .uk-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  html body .uk-section { padding: 60px 0; }
  html body .yg-hero { padding: 36px 0 60px; }
  html body .yg-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  html body .yg-hero-media { max-width: 440px; margin: 0 auto; }
  html body .yg-cats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  html body .service-grid { grid-template-columns: 1fr; gap: 14px; }
  html body .uk-blog-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 640px) {
  html body .uk-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  html body .uk-product-card .uk-product-category { margin: 10px 12px 0 !important; }
  html body .uk-product-title, html body h3.uk-product-title { margin: 4px 12px 0 !important; font-size: 13px !important; }
  html body .uk-product-price-row { margin: 8px 12px 14px !important; }
  html body .yg-cat-label { font-size: 18px; padding: 12px 14px; }
  html body .yg-hero h1 { font-size: clamp(36px, 10vw, 46px) !important; }
}

/* hide empty fake-price leftovers */
html body .product-price-compare:empty, html body #local-product-compare:empty,
html body .product-price-note:empty, html body #local-product-price-note:empty { display: none !important; }

/* ---- square-crop card images: any source ratio fills a 1:1 box, center-cropped ---- */
html body .product-card .product-image {
  aspect-ratio: 1 / 1 !important;
  width: 100%;
  overflow: hidden !important;
  background: var(--yg-sand, #eae3d5);
}
html body .product-card .product-image img:not(.hover-img) {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}
html body .product-card .product-image img.hover-img {
  object-fit: cover !important;
}
