/* ===============================
   WealthOfYoga - Base Styles
================================= */

:root{
  --wo-bg: #ffffff;
  --wo-text: #101828;
  --wo-muted: #667085;
  --wo-border: #e7e7ea;
  --wo-soft: #f7f7f8;
}

/* Base */
body{
  background: var(--wo-bg);
  color: var(--wo-text);
}


/* ===============================
   Light Premium Top Bar
================================= */

.topbar{
  background: #ffffff;
  border-bottom: 1px solid #e6e8ec;
  font-size: 12px;
}

.topbar .container{
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Left */
.topbar-left{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f5f7fa;
  border: 1px solid #e4e7ec;
  font-weight: 600;
  color: #101828;
  white-space: nowrap;
}

.topbar-pill i{
  font-size: 13px;
  color: #475467;
}

.topbar-text{
  color: #667085;
}

/* Right */
.topbar-right{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-link{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #344054;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}

.topbar-link i{
  font-size: 13px;
  color: #667085;
}

.topbar-link:hover{
  background: #f2f4f7;
  color: #101828;
}

.topbar-link:hover i{
  color: #101828;
}

.sep{
  color: #d0d5dd;
  font-size: 12px;
}

.topbar-mini{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #667085;
  padding-left: 6px;
  border-left: 1px solid #e4e7ec;
}

.topbar-mini i{
  font-size: 13px;
}

/* Mobile polish */
@media (max-width: 576px){
  .topbar-inner{
    justify-content: center;
    text-align: center;
  }

  .topbar-right{
    justify-content: center;
  }
}


/* =========================================================
   WEALTH OF YOGA
   Premium Dark Header / Navigation
========================================================= */

.site-header {
  width: 100%;
  z-index: 1030;
}


/* =========================================================
   NAVBAR
========================================================= */

.wo-navbar {
  background: #0b1220;

  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(245, 201, 122, 0.25);

  /* Less padding = bigger logo without oversized navbar */
  padding-top: 5px;
  padding-bottom: 5px;

  min-height: 96px;
}


/* =========================================================
   LOGO
========================================================= */

.wo-logo {
  display: flex;
  align-items: center;

  padding: 0;
  margin: 0;

  text-decoration: none;

  flex-shrink: 0;
}


/*
|--------------------------------------------------------------------------
| IMPORTANT
|--------------------------------------------------------------------------
| We are sizing using WIDTH instead of height.
|
| Your previous:
| height: 62px;
|
| was making the wide logo approximately only 120px wide.
|
| This version makes the logo much more prominent.
|--------------------------------------------------------------------------
*/

.wo-logo img {
  display: block;

  width: 190px;
  height: auto;

  max-width: none;

  object-fit: contain;

  /* Better visibility */
  opacity: 1;

  /* Slight visual enhancement */
  filter:
    brightness(1.08)
    contrast(1.08)
    drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35));

  /* Browser rendering improvements */
  image-rendering: auto;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transform: translateZ(0);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


/* Optional subtle logo hover */
.wo-logo:hover img {
  transform: translateZ(0) scale(1.025);
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.wo-nav-links {
  display: flex;
  align-items: center;
}


.wo-nav-links .nav-item {
  display: flex;
  align-items: center;
}


.wo-nav-links .nav-link {
  position: relative;

  color: rgba(255, 255, 255, 0.80);

  font-size: 15px;
  font-weight: 500;

  line-height: 1.4;

  padding: 10px 12px;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}


.wo-nav-links .nav-link:hover,
.wo-nav-links .nav-link:focus {
  color: #f5c97a;
}


/* Active state */
.wo-nav-links .nav-link.active {
  color: #f5c97a;
}


/* =========================================================
   DESKTOP DIVIDER
========================================================= */

.nav-divider {
  width: 1px;
  height: 24px;

  background: rgba(255, 255, 255, 0.18);

  margin-left: 12px;
  margin-right: 14px;

  flex-shrink: 0;
}


/* =========================================================
   BEST PICKS CTA
========================================================= */

.wo-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 36px;

  padding: 6px 14px;

  border: 1px solid #f5c97a;
  border-radius: 4px;

  color: #f5c97a;
  background: transparent;

  font-size: 13px;
  font-weight: 500;

  line-height: 1;

  white-space: nowrap;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}


.wo-cta:hover,
.wo-cta:focus {
  background: #f5c97a;
  border-color: #f5c97a;

  color: #0b1220;

  transform: translateY(-1px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199.98px) {

  .wo-logo img {
    width: 175px;
  }


  .wo-nav-links .nav-link {
    font-size: 14px;

    padding-left: 9px;
    padding-right: 9px;
  }


  .nav-divider {
    margin-left: 8px;
    margin-right: 10px;
  }

}


/* =========================================================
   MOBILE / TABLET NAV
========================================================= */

@media (max-width: 991.98px) {

  .wo-navbar {
    min-height: 82px;

    padding-top: 6px;
    padding-bottom: 6px;
  }


  /* Mobile logo */
  .wo-logo img {
    width: 155px;
    height: auto;
  }


  /* Hamburger */
  .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.18);

    padding: 6px 9px;

    box-shadow: none !important;
  }


  .navbar-toggler:focus {
    border-color: rgba(245, 201, 122, 0.65);

    box-shadow: none;
  }


  /* Dropdown navigation */
  .navbar-collapse {
    margin-top: 8px;

    padding-top: 12px;
    padding-bottom: 16px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }


  .wo-nav-links {
    align-items: stretch !important;

    width: 100%;

    padding-top: 0;
  }


  .wo-nav-links .nav-item {
    display: block;

    width: 100%;
  }


  .wo-nav-links .nav-link {
    display: block;

    width: 100%;

    padding: 10px 0;

    font-size: 15px;
  }


  /* Hide desktop divider */
  .nav-divider {
    display: none !important;
  }


  /* Mobile CTA */
  .wo-cta {
    display: inline-flex;

    width: auto;

    margin-top: 10px;

    padding: 9px 17px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

  .wo-navbar {
    min-height: 76px;
  }


  .wo-logo img {
    width: 140px;
  }

}

/* =========================================================
   WEALTH OF YOGA HERO BANNER
   Performance Optimized Video Hero

   Desktop:
   Full cinematic viewport

   Mobile:
   Responsive 16:9 video

   Improvements:
   - Reduced GPU-heavy filters
   - Removed continuous video scaling
   - Dedicated visual overlay
   - Better Safari/mobile performance
========================================================= */


/* =========================================================
   HERO SECTION
========================================================= */

.woy-heroBanner {
  position: relative;

  width: 100%;

  overflow: hidden;

  background: #000;
}


/* =========================================================
   HERO WRAPPER
========================================================= */

.woy-heroBanner__wrap {
  position: relative;

  width: 100%;

  height: 100vh;
  min-height: 680px;

  overflow: hidden;

  background: #000;

  isolation: isolate;
}


/* =========================================================
   FALLBACK IMAGE
========================================================= */

.woy-heroBanner__fallback {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  z-index: 1;

  opacity: 1;

  transition: opacity 0.5s ease;
}


/*
|--------------------------------------------------------------------------
| Don't use display:none here.
|
| Keeping the fallback in the DOM prevents a sudden black flash
| if video temporarily buffers.
|--------------------------------------------------------------------------
*/

.woy-heroBanner__wrap.is-video-playing
.woy-heroBanner__fallback {
  opacity: 0;
}


/* =========================================================
   VIDEO
========================================================= */

.woy-heroBanner__video {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;
  object-position: center center;

  background: #000;

  opacity: 0;
  visibility: hidden;

  z-index: 2;

  /*
  |--------------------------------------------------------------------------
  | IMPORTANT PERFORMANCE FIX
  |--------------------------------------------------------------------------
  |
  | Removed:
  |
  | filter: brightness() contrast() saturate()
  | transform: scale(1.045)
  | long transform animation
  |
  | Applying those effects to a full screen video can significantly
  | increase GPU usage.
  |
  */

  transform: translateZ(0);

  -webkit-transform: translateZ(0);

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;

  will-change: opacity;
}


/* =========================================================
   ACTIVE VIDEO
========================================================= */

.woy-heroBanner__video.is-active {
  opacity: 1;

  visibility: visible;

  z-index: 3;
}


/* =========================================================
   VISUAL OVERLAY

   Use overlay instead of CSS filter on video.
========================================================= */

.woy-heroBanner__overlay {
  position: absolute;

  inset: 0;

  z-index: 4;

  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.20) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(0, 0, 0, 0.02) 75%,
      rgba(0, 0, 0, 0.05) 100%
    );
}


/* =========================================================
   LEFT QUOTE BOX
========================================================= */

.woy-heroBanner__quoteBox {
  position: absolute;

  left: 6%;

  top: 50%;

  transform: translateY(-50%);

  z-index: 5;

  width: min(460px, 36vw);

  padding: 24px 28px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0.05) 100%
    );

  border-radius: 22px;

  /*
  |--------------------------------------------------------------------------
  | Lower blur for better video performance.
  |--------------------------------------------------------------------------
  */

  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);

  pointer-events: none;
}


/* =========================================================
   QUOTE LABEL
========================================================= */

.woy-heroBanner__quoteLabel {
  display: inline-flex;

  align-items: center;

  margin-bottom: 10px;

  font-family:
    Calibri,
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 16px;

  font-weight: 700;

  letter-spacing: 0.16em;

  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.90);
}


.woy-heroBanner__quoteLabel::before {
  content: none;

  display: none;
}


/* =========================================================
   QUOTE TEXT
========================================================= */

.woy-heroBanner__quoteText {
  margin: 0;

  font-family:
    Calibri,
    "Segoe UI",
    Arial,
    sans-serif;

  font-size: 22px;

  line-height: 1.25;

  font-weight: 400;

  letter-spacing: 0;

  text-transform: none;

  color: #ffffff;

  text-shadow:
    0 4px 16px rgba(0, 0, 0, 0.32),
    0 2px 4px rgba(0, 0, 0, 0.34);

  opacity: 1;

  transform: translateY(0);

  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}


/* Quote animation */

.woy-heroBanner__quoteText.is-changing {
  opacity: 0;

  transform: translateY(10px);
}


/* =========================================================
   TABLET / MOBILE
========================================================= */

@media (max-width: 768px) {

  .woy-heroBanner__wrap {
    height: auto;

    min-height: unset;

    aspect-ratio: var(
      --woy-video-ratio,
      16 / 9
    );
  }


  .woy-heroBanner__video,
  .woy-heroBanner__fallback {
    width: 100%;
    height: 100%;

    object-fit: cover;

    object-position: center center;
  }


  /*
  |--------------------------------------------------------------------------
  | Disable backdrop blur on mobile.
  |
  | This reduces GPU load significantly on lower-end phones.
  |--------------------------------------------------------------------------
  */

  .woy-heroBanner__quoteBox {
    left: 14px;
    right: 14px;

    top: auto;

    bottom: 14px;

    transform: none;

    width: auto;

    padding: 12px 14px;

    border-radius: 14px;

    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.52) 0%,
        rgba(0, 0, 0, 0.28) 68%,
        rgba(0, 0, 0, 0.06) 100%
      );

    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }


  .woy-heroBanner__quoteLabel {
    margin-bottom: 6px;

    font-size: 12px;

    letter-spacing: 0.13em;
  }


  .woy-heroBanner__quoteText {
    font-size: 16px;

    line-height: 1.2;
  }


  /*
  |--------------------------------------------------------------------------
  | Lighter overlay on mobile
  |--------------------------------------------------------------------------
  */

  .woy-heroBanner__overlay {
    background:
      linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.18) 0%,
        rgba(0, 0, 0, 0.02) 70%
      );
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .woy-heroBanner__wrap {
    height: auto;

    min-height: unset;

    aspect-ratio: var(
      --woy-video-ratio,
      16 / 9
    );
  }


  .woy-heroBanner__quoteBox {
    left: 10px;
    right: 10px;

    bottom: 10px;

    padding: 10px 12px;
  }


  .woy-heroBanner__quoteLabel {
    font-size: 11px;

    letter-spacing: 0.12em;
  }


  .woy-heroBanner__quoteText {
    font-size: 14px;

    line-height: 1.18;
  }

}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

  .woy-heroBanner__wrap {
    height: auto;

    min-height: unset;

    aspect-ratio: var(
      --woy-video-ratio,
      16 / 9
    );
  }


  .woy-heroBanner__quoteBox {
    bottom: 8px;

    padding: 8px 10px;
  }


  .woy-heroBanner__quoteLabel {
    display: none;
  }


  .woy-heroBanner__quoteText {
    font-size: 13px;

    line-height: 1.14;
  }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

  .woy-heroBanner__video,
  .woy-heroBanner__fallback,
  .woy-heroBanner__quoteText {
    transition: none;
  }

}

/* ===============================
   Premium Section Header
================================= */

.wo-section {
  background: #ffffff;
}

.wo-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.wo-section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: #101828;
}

.wo-section-subtitle {
  margin-bottom: 0;
  color: #667085;
}

/* Premium link */
.wo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #101828;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e4e7ec;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wo-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.08);
}



/* ===============================
   Premium Category Cards
================================= */
.wo-card-link{
  text-decoration: none;
  display: block;
}

.wo-category-card{
  position: relative;
  height: 310px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid #e4e7ec;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wo-category-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,18,32,0.20) 0%,
    rgba(11,18,32,0.35) 40%,
    rgba(11,18,32,0.78) 100%
  );
  transition: opacity .25s ease;
}

.wo-category-top{
  position: relative;
  z-index: 2;
  padding: 14px;
  display: flex;
  justify-content: flex-end;
}

.wo-icon-badge{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.wo-icon-badge i{
  color: #f5c97a; /* gold accent */
  font-size: 18px;
}

.wo-category-content{
  position: relative;
  z-index: 2;
  padding: 16px;
}

.wo-category-title{
  margin: 0 0 6px 0;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.wo-category-desc{
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 13px;
}

/* Hover */
.wo-category-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.18);
}

.wo-category-card:hover .wo-category-overlay{
  opacity: 0.92;
}

/* Responsive */
@media (max-width: 576px){
  .wo-category-card{
    height: 260px;
  }
}



/* ===============================
   Editor Picks - Premium Cards
================================= */

.wo-picks{
  background: #f7f7f8; /* soft premium light */
}

/* Product Card Shell */
.wo-product-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wo-product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

/* Media */
.wo-product-media{
  position: relative;
  display: block;
  height: 190px;
  background: #f2f4f7;
  overflow: hidden;
}

.wo-product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wo-product-card:hover .wo-product-media img{
  transform: scale(1.05);
}

/* Badge */
.wo-badge{
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245,201,122,0.95);
  color: #0b1220;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(11,18,32,0.18);
}

.wo-badge-dark{
  background: rgba(11,18,32,0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Body */
.wo-product-body{
  padding: 16px;
}

.wo-product-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  font-size: 13px;
  margin-bottom: 10px;
}

.wo-dot{
  color: #d0d5dd;
}

.wo-rating i{
  color: #f5c97a;
  margin-right: 6px;
  font-size: 13px;
}

.wo-muted{
  color: #98a2b3;
}

.wo-price strong{
  color: #101828;
}

/* Title */
.wo-product-title{
  margin: 0 0 10px 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.wo-product-title a{
  color: #101828;
  text-decoration: none;
}

.wo-product-title a:hover{
  text-decoration: underline;
}

/* Features */
.wo-features{
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #475467;
}

.wo-features li{
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.wo-features i{
  margin-top: 2px;
  color: #22c55e;
  font-size: 14px;
}

/* Actions */
.wo-product-actions{
  display: grid;
  gap: 10px;
}

.wo-btn-gold{
  background: #f5c97a;
  border: 1px solid rgba(11,18,32,0.12);
  color: #0b1220;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 12px;
}

.wo-btn-gold:hover{
  background: #f2bf65;
  color: #0b1220;
}

.wo-btn-gold i{
  margin-right: 8px;
}

.wo-btn-ghost{
  background: #ffffff;
  border: 1px solid #e4e7ec;
  color: #101828;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 12px;
}

.wo-btn-ghost:hover{
  background: #f2f4f7;
  color: #101828;
}

/* Footer note */
.wo-product-foot{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f2f4f7;
}

.wo-ship{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #667085;
}

.wo-ship i{
  color: #0b1220;
  opacity: 0.75;
}






/* ===============================
   Best Of Guides - Premium
================================= */

.wo-guides{
  background: #ffffff;
}

.wo-guide-link{
  text-decoration: none;
  display: block;
}

.wo-guide-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wo-guide-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

/* Media */
.wo-guide-media{
  position: relative;
  height: 190px;
  background: #f2f4f7;
  overflow: hidden;
}

.wo-guide-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wo-guide-card:hover .wo-guide-media img{
  transform: scale(1.05);
}

/* Gradient overlay */
.wo-guide-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.10) 0%, rgba(11,18,32,0.35) 55%, rgba(11,18,32,0.85) 100%);
}

/* Badges */
.wo-guide-badges{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.wo-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245,201,122,0.95);
  color: #0b1220;
  border: 1px solid rgba(11,18,32,0.14);
}

.wo-pill i{
  font-size: 13px;
}

.wo-pill-dark{
  background: rgba(11,18,32,0.75);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Body */
.wo-guide-body{
  padding: 16px;
}

.wo-guide-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #667085;
  margin-bottom: 10px;
}

.wo-guide-meta i{
  color: #98a2b3;
  margin-right: 6px;
}

.wo-guide-title{
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
  color: #101828;
}

.wo-guide-desc{
  margin: 0 0 14px 0;
  color: #475467;
  font-size: 14px;
}

/* CTA */
.wo-guide-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #101828;
  padding-top: 10px;
  border-top: 1px solid #f2f4f7;
}

.wo-guide-cta i{
  transition: transform .2s ease;
}

.wo-guide-card:hover .wo-guide-cta i{
  transform: translateX(2px);
}




/* ===============================
   WHY TRUST US - Premium (WOW)
================================= */

.wo-trust{
  background: radial-gradient(1200px 600px at 15% 10%, rgba(245,201,122,0.22) 0%, rgba(245,201,122,0.00) 55%),
              radial-gradient(900px 600px at 85% 30%, rgba(11,18,32,0.06) 0%, rgba(11,18,32,0.00) 55%),
              #f7f7f8;
}

/* Main Trust Cards */
.wo-trust-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(6px);
}

.wo-trust-card::before{
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(140deg, rgba(245,201,122,0.35), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.wo-trust-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

.wo-trust-card:hover::before{
  opacity: 1;
}

/* Icon Badge */
.wo-trust-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,201,122,0.22);
  border: 1px solid rgba(245,201,122,0.40);
  margin-bottom: 14px;
}

.wo-trust-icon i{
  font-size: 20px;
  color: #0b1220;
}

/* Title / Text */
.wo-trust-title{
  font-weight: 900;
  color: #101828;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.wo-trust-text{
  color: #475467;
  font-size: 14px;
  margin-bottom: 14px;
}

/* Footer Tags */
.wo-trust-foot{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #667085;
  border-top: 1px solid #f2f4f7;
  padding-top: 12px;
}

.wo-trust-foot i{
  color: #0b1220;
  opacity: 0.75;
  margin-right: 6px;
}

.wo-trust-foot .wo-dot{
  color: #d0d5dd;
}

/* Trust stats strip */
.wo-trust-stats{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  padding: 16px;
  backdrop-filter: blur(6px);
}

.wo-stat{
  border-radius: 14px;
  padding: 14px 10px;
  transition: background .2s ease;
}

.wo-stat:hover{
  background: #ffffff;
}

.wo-stat-num{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #101828;
}

.wo-stat-label{
  margin-top: 4px;
  font-size: 12px;
  color: #667085;
}



/* ===============================
   Latest Articles - Premium
================================= */

.wo-articles{
  background: #ffffff;
}

.wo-article-link{
  text-decoration: none;
  display: block;
}

.wo-article-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wo-article-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

/* Media */
.wo-article-media{
  position: relative;
  height: 200px;
  background: #f2f4f7;
  overflow: hidden;
}

.wo-article-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wo-article-card:hover .wo-article-media img{
  transform: scale(1.05);
}

.wo-article-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.10) 0%, rgba(11,18,32,0.35) 55%, rgba(11,18,32,0.85) 100%);
}

/* Category Tag */
.wo-article-top{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.wo-article-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,18,32,0.78);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.wo-article-tag i{
  color: #f5c97a; /* gold accent */
  font-size: 13px;
}

/* Body */
.wo-article-body{
  padding: 16px;
}

.wo-article-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #667085;
  margin-bottom: 10px;
}

.wo-article-meta i{
  color: #98a2b3;
  margin-right: 6px;
}

.wo-article-title{
  margin: 0 0 8px 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #101828;
}

.wo-article-desc{
  margin: 0 0 14px 0;
  color: #475467;
  font-size: 14px;
}

/* CTA */
.wo-article-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: #101828;
  padding-top: 10px;
  border-top: 1px solid #f2f4f7;
}

.wo-article-cta i{
  transition: transform .2s ease;
}

.wo-article-card:hover .wo-article-cta i{
  transform: translateX(2px);
}

/* Footer strip */
.wo-articles-foot{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: #f7f7f8;
  padding: 16px;
}

.wo-articles-foot-text{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #475467;
  font-weight: 700;
}

.wo-articles-foot-text i{
  color: #0b1220;
  opacity: 0.75;
}


/* ===============================
   WOY CTA (Safe Namespaced CSS)
   Only affects .woy-cta section
================================ */

.woy-cta{
  padding: 56px 0;
  background: #0b1220;
  color: #ffffff;
}

.woy-cta__box{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

/* Left */
.woy-cta__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.92);
}

.woy-cta__kicker i{
  color: #f5c97a;
  font-size: 14px;
}

.woy-cta__title{
  margin-top: 14px;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.woy-cta__subtitle{
  margin: 0 0 14px 0;
  color: rgba(255,255,255,0.74);
  max-width: 620px;
}

/* Trust line */
.woy-cta__trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.woy-cta__trustItem i{
  color: #f5c97a;
  margin-right: 6px;
}

.woy-cta__dot{
  color: rgba(255,255,255,0.30);
}

/* Right card */
.woy-cta__formCard{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
}

.woy-cta__form{
  display: grid;
  gap: 12px;
}

/* Input */
.woy-cta__inputWrap{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}

.woy-cta__inputWrap i{
  color: rgba(255,255,255,0.80);
  font-size: 16px;
}

.woy-cta__input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 2px 0;
}

.woy-cta__input::placeholder{
  color: rgba(255,255,255,0.62);
}

/* Button (NO color change on hover) */
.woy-cta__btn{
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  background: #f5c97a;
  color: #0b1220;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}

.woy-cta__btn:hover{
  /* keep same color */
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

.woy-cta__btn i{
  margin-left: 8px;
}

/* Note */
.woy-cta__note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}

.woy-cta__note i{
  margin-right: 6px;
  color: rgba(255,255,255,0.75);
}

.woy-cta__link{
  color: rgba(245,201,122,0.95);
  text-decoration: none;
}

.woy-cta__link:hover{
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px){
  .woy-cta__box{
    padding: 18px;
  }
}

/* =========================================================
   WEALTH OF YOGA
   PREMIUM FOOTER
   Scoped only to .woy-footer
========================================================= */

.woy-footer {
  position: relative;

  padding: 68px 0 24px;

  background: #0b1220;

  color: rgba(255, 255, 255, 0.86);

  border-top: 1px solid rgba(245, 201, 122, 0.18);
}


/* =========================================================
   BRAND / LOGO
========================================================= */

.woy-footer__brand {
  display: inline-flex;

  align-items: center;

  padding: 0;

  margin: 0 0 20px 0;

  text-decoration: none;

  line-height: 1;

  flex-shrink: 0;
}


/*
|--------------------------------------------------------------------------
| IMPORTANT LOGO FIX
|--------------------------------------------------------------------------
|
| Previously:
| height: 72px;
|
| Since the logo is horizontally proportioned, it remained visually small.
|
| Now we control the WIDTH directly.
|
|--------------------------------------------------------------------------
*/

.woy-footer__brand img {
  display: block;

  width: 210px;
  height: auto;

  max-width: 100%;

  object-fit: contain;

  opacity: 1;

  image-rendering: auto;

  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;

  transform: translateZ(0);

  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}


/* Slight logo hover effect */
.woy-footer__brand:hover img {
  transform: translateZ(0) scale(1.025);
}


/* =========================================================
   DESKTOP LOGO
========================================================= */

@media (min-width: 992px) {

  .woy-footer__brand img {
    width: 230px;
    height: auto;
  }

}


/* =========================================================
   TEXT
========================================================= */

.woy-footer__text {
  margin: 0 0 20px 0;

  color: rgba(255, 255, 255, 0.70);

  font-size: 14px;

  line-height: 1.75;

  max-width: 390px;
}


.woy-footer__textSmall {
  margin: 0 0 14px 0;

  color: rgba(255, 255, 255, 0.68);

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   TITLES
========================================================= */

.woy-footer__title {
  margin: 0 0 16px 0;

  color: #ffffff;

  font-size: 15px;

  font-weight: 700;

  line-height: 1.3;

  letter-spacing: 0.01em;
}


/* =========================================================
   LISTS
========================================================= */

.woy-footer__list {
  list-style: none;

  padding: 0;

  margin: 0;

  display: grid;

  gap: 11px;
}


/* =========================================================
   LINKS
========================================================= */

.woy-footer__link {
  position: relative;

  color: rgba(255, 255, 255, 0.70);

  text-decoration: none;

  font-size: 13px;

  line-height: 1.5;

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}


.woy-footer__link:hover,
.woy-footer__link:focus {
  color: #f5c97a;

  text-decoration: none;
}


/* =========================================================
   SOCIAL ICONS
========================================================= */

.woy-footer__social {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 10px;
}


.woy-footer__socialLink {
  width: 40px;
  height: 40px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  border-radius: 12px;

  border: 1px solid rgba(255, 255, 255, 0.12);

  background: rgba(255, 255, 255, 0.05);

  color: rgba(255, 255, 255, 0.80);

  text-decoration: none;

  font-size: 16px;

  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.woy-footer__socialLink:hover,
.woy-footer__socialLink:focus {
  color: #0b1220;

  background: #f5c97a;

  border-color: #f5c97a;

  transform: translateY(-2px);

  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   NEWSLETTER FORM
========================================================= */

.woy-footer__form {
  display: grid;

  gap: 10px;

  margin-top: 6px;
}


/* Input container */

.woy-footer__inputWrap {
  display: flex;

  align-items: center;

  gap: 10px;

  min-height: 46px;

  padding: 10px 12px;

  border-radius: 12px;

  background: rgba(255, 255, 255, 0.07);

  border: 1px solid rgba(255, 255, 255, 0.14);

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease;
}


.woy-footer__inputWrap:focus-within {
  border-color: rgba(245, 201, 122, 0.72);

  background: rgba(255, 255, 255, 0.09);
}


.woy-footer__inputWrap i {
  color: rgba(255, 255, 255, 0.72);

  font-size: 15px;

  flex-shrink: 0;
}


/* Input */

.woy-footer__input {
  width: 100%;

  border: none;

  outline: none;

  background: transparent;

  color: #ffffff;

  font-size: 14px;

  font-weight: 500;

  padding: 2px 0;
}


.woy-footer__input::placeholder {
  color: rgba(255, 255, 255, 0.50);
}


/* =========================================================
   SUBSCRIBE BUTTON
========================================================= */

.woy-footer__btn {
  width: 100%;

  min-height: 45px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  border: 1px solid #f5c97a;

  border-radius: 12px;

  padding: 11px 14px;

  background: #f5c97a;

  color: #0b1220;

  font-size: 13px;

  font-weight: 700;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}


.woy-footer__btn:hover {
  transform: translateY(-1px);

  background: #ffd589;

  border-color: #ffd589;

  box-shadow:
    0 9px 22px rgba(0, 0, 0, 0.22);
}


.woy-footer__btn i {
  margin-left: 8px;

  font-size: 14px;
}


/* =========================================================
   PRIVACY NOTE
========================================================= */

.woy-footer__note {
  margin-top: 11px;

  color: rgba(255, 255, 255, 0.63);

  font-size: 12px;

  line-height: 1.6;
}


.woy-footer__note i {
  margin-right: 5px;

  color: rgba(255, 255, 255, 0.72);
}


/* =========================================================
   INLINE GOLD LINKS
========================================================= */

.woy-footer__linkInline {
  color: rgba(245, 201, 122, 0.95);

  text-decoration: none;

  transition: color 0.2s ease;
}


.woy-footer__linkInline:hover,
.woy-footer__linkInline:focus {
  color: #ffd589;

  text-decoration: underline;
}


/* =========================================================
   BOTTOM BAR
========================================================= */

.woy-footer__bottom {
  margin-top: 38px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.10);

  display: flex;

  gap: 14px;

  flex-wrap: wrap;

  align-items: flex-start;

  justify-content: space-between;

  color: rgba(255, 255, 255, 0.62);

  font-size: 12px;

  line-height: 1.6;
}


.woy-footer__bottomLeft {
  display: flex;

  align-items: center;

  flex-wrap: wrap;
}


.woy-footer__bottomRight {
  max-width: 720px;

  line-height: 1.7;
}


.woy-footer__bottomRight i {
  margin-right: 5px;

  color: rgba(255, 255, 255, 0.72);
}


.woy-footer__sep {
  margin: 0 8px;

  color: rgba(255, 255, 255, 0.32);
}


/* =========================================================
   LEGAL LINKS
========================================================= */

.woy-footer__legalLinks {
  margin-top: 17px;

  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 8px 18px;

  font-size: 12px;
}


.woy-footer__legalLinks .woy-footer__link {
  font-size: 12px;

  color: rgba(255, 255, 255, 0.58);
}


.woy-footer__legalLinks .woy-footer__link:hover {
  color: #f5c97a;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991.98px) {

  .woy-footer {
    padding-top: 56px;
  }


  .woy-footer__brand img {
    width: 200px;
  }


  .woy-footer__bottom {
    margin-top: 32px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575.98px) {

  .woy-footer {
    padding-top: 46px;

    padding-bottom: 22px;
  }


  /*
  |--------------------------------------------------------------------------
  | Mobile Logo
  |--------------------------------------------------------------------------
  */

  .woy-footer__brand {
    margin-bottom: 17px;
  }


  .woy-footer__brand img {
    width: 175px;

    height: auto;

    max-width: 100%;
  }


  .woy-footer__text {
    max-width: 100%;

    font-size: 13px;

    line-height: 1.7;
  }


  .woy-footer__title {
    margin-bottom: 13px;
  }


  .woy-footer__bottom {
    margin-top: 28px;

    padding-top: 18px;

    display: block;
  }


  .woy-footer__bottomLeft {
    margin-bottom: 10px;
  }


  .woy-footer__sep {
    margin-left: 6px;
    margin-right: 6px;
  }


  .woy-footer__legalLinks {
    gap: 9px 16px;
  }

}