/* ============================================
   YOGI.LIVE HOMEPAGE REVAMP CSS
   100% Exact Match of React Mockup
   ============================================ */

/* --- CSS Variables --- */
:root {
  --yr-primary: #54340A;
  --yr-primary-light: #6B4512;
  --yr-accent: #8B6914;
  --yr-accent-light: #A47D2B;
  --yr-accent-gold: #C4982A;
  --yr-bg: #FAF6F1;
  --yr-bg-alt: #F3EDE4;
  --yr-bg-dark: #2C1810;
  --yr-white: #FFFFFF;
  --yr-text: #2C1810;
  --yr-text-muted: #6B5744;
  --yr-text-light: #8A7A6A;
  --yr-border: #E8DFD4;
  --yr-border-light: #F0E8DD;
  --yr-shadow: 0 2px 12px rgba(44, 24, 16, 0.06);
  --yr-shadow-md: 0 4px 20px rgba(44, 24, 16, 0.08);
  --yr-shadow-lg: 0 8px 32px rgba(44, 24, 16, 0.10);
  --yr-shadow-hover: 0 8px 32px rgba(139, 105, 20, 0.15);
  --yr-font: 'Lato', system-ui, -apple-system, sans-serif;
  --yr-radius: 16px;
  --yr-radius-sm: 10px;
  --yr-radius-xs: 8px;
}

/* --- Global body background and font to match mockup --- */
body,
body.page-template,
body.page,
body.home,
#wrapper,
#wrapper.container {
  background-color: #FAF6F1 !important;
  font-family: 'Lato', system-ui, -apple-system, sans-serif !important;
}

/* Force body bg on all WordPress containers */
.main-content,
.content-area,
.site-content,
.container-fluid,
#content {
  background-color: #FAF6F1 !important;
}

/* --- Homepage body overrides --- */
body.home #content,
body.page-template-front-page #content {
  padding: 0 !important;
  margin: 0 !important;
}

body.home .container-fluid > .row > .col-md-12,
body.page-template-front-page .container-fluid > .row > .col-md-12 {
  padding: 0 !important;
}

body.home .entry-content,
body.page-template-front-page .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}

/* Hide old page banner on homepage */
body.home .header-wrap.page-banner,
body.page-template-front-page .header-wrap.page-banner {
  display: none !important;
}

/* Hide old trial button on homepage */
body.home .trial-button-static,
body.page-template-front-page .trial-button-static {
  display: none !important;
}

/* Hide old top header on homepage */
body.home .top-header-section,
body.page-template-front-page .top-header-section {
  display: none !important;
}

/* Hide the old WordPress footer on homepage — we use custom footer */
body.home #containerfooter,
body.page-template-front-page #containerfooter {
  display: none !important;
}

body.home .footer-widget-area,
body.page-template-front-page .footer-widget-area {
  display: none !important;
}

body.home .bottomfooter,
body.page-template-front-page .bottomfooter {
  display: none !important;
}

/* ============================================
   HEADER — Transparent on homepage
   Mockup: Lato 14px, weight 600, uppercase, gap 32px, NO vertical borders
   ============================================ */
body.home .banner.headerclass,
body.page-template-front-page .banner.headerclass {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  background: transparent !important;
  transition: all 0.3s ease !important;
  border-bottom: 1px solid transparent !important;
  box-shadow: none !important;
}

body.home .banner.headerclass.header-scrolled,
body.page-template-front-page .banner.headerclass.header-scrolled {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  box-shadow: 0 1px 8px rgba(44,24,16,0.08) !important;
  border-bottom: 1px solid var(--yr-border-light) !important;
}

/* Nav links — Mockup: 14px, weight 600, uppercase, NO vertical borders, gap spacing */
body.home .sf-menu > li.parent-nav > a,
body.home .main-nav-manu li.parent-nav > a,
body.page-template-front-page .sf-menu > li.parent-nav > a,
body.page-template-front-page .main-nav-manu li.parent-nav > a {
  font-family: var(--yr-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  border: none !important;
  border-right: none !important;
  border-left: none !important;
  padding: 8px 16px !important;
  transition: color 0.2s ease !important;
  text-decoration: none !important;
}

body.home .banner.headerclass.header-scrolled .sf-menu > li.parent-nav > a,
body.home .banner.headerclass.header-scrolled .main-nav-manu li.parent-nav > a,
body.page-template-front-page .banner.headerclass.header-scrolled .sf-menu > li.parent-nav > a,
body.page-template-front-page .banner.headerclass.header-scrolled .main-nav-manu li.parent-nav > a {
  color: var(--yr-text) !important;
}

body.home .sf-menu > li.parent-nav > a:hover,
body.home .main-nav-manu li.parent-nav > a:hover,
body.page-template-front-page .sf-menu > li.parent-nav > a:hover,
body.page-template-front-page .main-nav-manu li.parent-nav > a:hover {
  color: var(--yr-accent-gold) !important;
  border-bottom: none !important;
}

body.home .banner.headerclass.header-scrolled .sf-menu > li.parent-nav > a:hover,
body.home .banner.headerclass.header-scrolled .main-nav-manu li.parent-nav > a:hover,
body.page-template-front-page .banner.headerclass.header-scrolled .sf-menu > li.parent-nav > a:hover,
body.page-template-front-page .banner.headerclass.header-scrolled .main-nav-manu li.parent-nav > a:hover {
  color: var(--yr-accent-gold) !important;
  border-bottom: none !important;
}

/* Remove ALL borders between nav items */
body.home .sf-menu > li.parent-nav,
body.home .main-nav-manu li.parent-nav,
body.page-template-front-page .sf-menu > li.parent-nav,
body.page-template-front-page .main-nav-manu li.parent-nav {
  border: none !important;
  list-style: none !important;
}

/* Sign In button — Mockup: 13px, weight 700, uppercase, rounded */
body.home .sign-up-section a#signInNowBtn,
body.page-template-front-page .sign-up-section a#signInNowBtn {
  font-family: var(--yr-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  backdrop-filter: blur(4px) !important;
  transition: all 0.2s ease !important;
  text-decoration: none !important;
}

body.home .sign-up-section a#signInNowBtn:hover,
body.page-template-front-page .sign-up-section a#signInNowBtn:hover {
  background: var(--yr-primary) !important;
  color: var(--yr-white) !important;
}

body.home .banner.headerclass.header-scrolled .sign-up-section a#signInNowBtn,
body.page-template-front-page .banner.headerclass.header-scrolled .sign-up-section a#signInNowBtn {
  color: var(--yr-text) !important;
  background: var(--yr-primary) !important;
  border-color: var(--yr-primary) !important;
  color: var(--yr-white) !important;
}

/* Plans button */
body.home .top-plans-button,
body.page-template-front-page .top-plans-button {
  font-family: var(--yr-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  background: var(--yr-accent) !important;
  color: var(--yr-white) !important;
  padding: 10px 24px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

body.home .top-plans-button:hover,
body.page-template-front-page .top-plans-button:hover {
  background: var(--yr-accent-light) !important;
  transform: translateY(-1px);
}

/* My Account dropdown */
body.home .dropbtn,
body.page-template-front-page .dropbtn {
  font-family: var(--yr-font) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 8px !important;
}

body.home .banner.headerclass.header-scrolled .dropbtn,
body.page-template-front-page .banner.headerclass.header-scrolled .dropbtn {
  color: var(--yr-text) !important;
  background: var(--yr-bg-alt) !important;
  border-color: var(--yr-border) !important;
}

/* Logo */
body.home #thelogo img,
body.page-template-front-page #thelogo img {
  height: 52px !important;
  width: auto !important;
  max-height: 52px !important;
}

/* ============================================
   SHARED UTILITIES
   ============================================ */
.yr-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.yr-center {
  text-align: center;
}

/* Section Headers */
.yr-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.yr-section-label {
  display: block;
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 700;
  color: var(--yr-accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.yr-section-label--light {
  color: #E8D5A8;
}

.yr-section-title {
  font-family: var(--yr-font);
  font-size: 40px;
  font-weight: 900;
  color: var(--yr-text) !important;
  margin: 0 0 16px;
  line-height: 1.2;
}

.yr-section-title--left {
  text-align: left;
}

.yr-section-title--light {
  color: var(--yr-white) !important;
}

.yr-section-desc {
  font-family: var(--yr-font);
  font-size: 18px;
  color: var(--yr-text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.yr-section-desc--light {
  color: rgba(255,255,255,0.65);
}

/* Buttons */
.yr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--yr-font);
  font-weight: 700;
  text-decoration: none !important;
  border-radius: var(--yr-radius-sm);
  transition: all 0.3s ease !important;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.yr-btn--white {
  font-size: 16px;
  color: var(--yr-primary) !important;
  background: var(--yr-white);
  padding: 16px 36px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.yr-btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  color: var(--yr-primary) !important;
}

.yr-btn--glass {
  font-size: 16px;
  color: var(--yr-white) !important;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 16px 36px;
  border-radius: 12px;
}

.yr-btn--glass:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: var(--yr-white) !important;
}

.yr-btn--glass-light {
  font-size: 15px;
  color: var(--yr-white) !important;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 14px 36px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
}

.yr-btn--glass-light:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  color: var(--yr-white) !important;
}

.yr-btn--primary {
  font-size: 15px;
  color: var(--yr-white) !important;
  background: var(--yr-primary);
  padding: 14px 32px;
}

.yr-btn--primary:hover {
  background: var(--yr-primary-light);
  transform: translateY(-2px);
  color: var(--yr-white) !important;
}

.yr-btn--outline {
  font-size: 15px;
  color: var(--yr-accent) !important;
  background: transparent;
  padding: 12px 28px;
  border: 1.5px solid var(--yr-accent);
}

.yr-btn--outline:hover {
  background: var(--yr-accent);
  color: var(--yr-white) !important;
}

/* ============================================
   SECTION 1: HERO BANNER
   ============================================ */
.yr-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--yr-font);
}

.yr-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.55);
}

.yr-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.7) 0%, rgba(44,24,16,0.3) 50%, transparent 100%);
}

.yr-hero__content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.yr-hero__inner {
  max-width: 680px;
}

.yr-hero__tagline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(139, 105, 20, 0.25);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 152, 42, 0.3);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 28px;
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 600;
  color: #E8D5A8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.yr-hero__title {
  font-family: var(--yr-font) !important;
  font-size: 56px !important;
  font-weight: 900 !important;
  color: var(--yr-white) !important;
  line-height: 1.1 !important;
  margin: 0 0 20px !important;
  letter-spacing: -0.5px;
}

.yr-hero__title-accent {
  color: #E8D5A8 !important;
}

.yr-hero__subtitle {
  font-family: var(--yr-font);
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0 0 36px;
  max-width: 560px;
}

.yr-hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.yr-hero__stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
}

.yr-hero__stat-num {
  font-family: var(--yr-font);
  font-size: 32px;
  font-weight: 900;
  color: var(--yr-white);
}

.yr-hero__stat-label {
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.yr-hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: yr-bounce 2s infinite;
}

.yr-hero__scroll span {
  font-family: var(--yr-font);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes yr-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   SECTION 2: FEATURES SHOWCASE
   ============================================ */
.yr-features {
  padding: 80px 0;
  background: var(--yr-white);
  font-family: var(--yr-font);
}

.yr-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.yr-feature-card {
  display: block;
  text-decoration: none !important;
  background: var(--yr-bg);
  border-radius: var(--yr-radius);
  padding: 36px;
  border: 1px solid var(--yr-border-light);
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.yr-feature-card:hover {
  box-shadow: var(--yr-shadow-hover);
  transform: translateY(-4px);
  border-color: var(--yr-accent);
}

.yr-feature-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--yr-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--yr-accent);
  background: rgba(139,105,20,0.1);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.yr-feature-card__icon {
  margin-bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(139,105,20,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yr-feature-card__title {
  font-family: var(--yr-font) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--yr-text) !important;
  margin: 0 0 10px !important;
}

.yr-feature-card__desc {
  font-family: var(--yr-font);
  font-size: 15px;
  color: var(--yr-text-muted);
  line-height: 1.6;
  margin: 0;
}

.yr-feature-card__link {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--yr-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--yr-accent);
}

/* ============================================
   SECTION 3: FEATURED VIDEOS — Single horizontal scroll row
   Mockup: flex row, overflow-x auto, scroll-snap, arrow buttons
   ============================================ */
.yr-videos {
  padding: 80px 0;
  background: var(--yr-bg);
  font-family: var(--yr-font);
}

.yr-videos__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.yr-videos__nav-arrows {
  display: flex;
  gap: 8px;
}

.yr-videos__arrow {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1.5px solid var(--yr-border);
  background: var(--yr-white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.yr-videos__arrow:hover {
  border-color: var(--yr-accent);
  background: var(--yr-bg-alt);
}

/* Horizontal scroll container */
.yr-videos__scroll-row {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}

.yr-videos__scroll-row::-webkit-scrollbar {
  display: none;
}

/* Video Card — in scroll row */
.yr-videos__scroll-row .yr-video-card {
  min-width: 320px;
  max-width: 320px;
  scroll-snap-align: start;
  flex-shrink: 0;
  display: block;
  text-decoration: none !important;
  background: var(--yr-white);
  border-radius: var(--yr-radius);
  overflow: hidden;
  border: 1px solid var(--yr-border-light);
  transition: all 0.3s ease !important;
}

.yr-videos__scroll-row .yr-video-card:hover {
  box-shadow: var(--yr-shadow-md);
  transform: translateY(-4px);
}

.yr-video-card__thumb {
  position: relative;
  padding-top: 56.25%;
  background: var(--yr-bg-alt);
  overflow: hidden;
}

.yr-video-card__thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yr-video-card__duration {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: var(--yr-white);
  font-family: var(--yr-font);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
}

.yr-video-card__play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.1);
  opacity: 0;
  transition: opacity 0.2s !important;
}

.yr-video-card:hover .yr-video-card__play-overlay {
  opacity: 1;
}

.yr-video-card__play-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yr-video-card__info {
  padding: 20px;
}

.yr-video-card__level {
  font-family: var(--yr-font);
  font-size: 12px;
  font-weight: 600;
  color: var(--yr-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.yr-video-card__title {
  font-family: var(--yr-font) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  color: var(--yr-text) !important;
  margin: 0 0 6px !important;
  line-height: 1.3;
}

.yr-video-card__instructor {
  font-family: var(--yr-font);
  font-size: 14px;
  color: var(--yr-text-muted);
  margin: 0;
}

/* ============================================
   SECTION 4: LIVE STREAM CLASSES
   Dark bg, 3 glass cards, countdown timers
   ============================================ */
.yr-livestream {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  font-family: var(--yr-font);
}

.yr-livestream__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35);
}

.yr-livestream__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.88) 0%, rgba(44,24,16,0.65) 60%, rgba(44,24,16,0.45) 100%);
}

.yr-livestream__content {
  position: relative;
  z-index: 2;
}

.yr-livestream__live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.yr-livestream__live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #E74C3C;
  animation: yr-pulse 2s infinite;
  box-shadow: 0 0 8px rgba(231,76,60,0.5);
}

@keyframes yr-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.yr-livestream__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Live Class Card */
.yr-live-card {
  display: block;
  text-decoration: none !important;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease !important;
  position: relative;
  overflow: hidden;
}

.yr-live-card:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.25);
  transform: translateY(-4px);
}

.yr-live-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--yr-accent-gold), transparent);
}

.yr-live-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.yr-live-card__badge {
  font-family: var(--yr-font);
  font-size: 11px;
  font-weight: 700;
  color: var(--yr-white);
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.yr-live-card__duration {
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
}

.yr-live-card__name {
  font-family: var(--yr-font) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  color: var(--yr-white) !important;
  margin: 0 0 6px !important;
  line-height: 1.3;
}

.yr-live-card__teacher {
  font-family: var(--yr-font);
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin: 0 0 20px;
}

.yr-live-card__time-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(0,0,0,0.2);
  border-radius: 12px;
  padding: 14px 16px;
}

.yr-live-card__time-label {
  font-family: var(--yr-font);
  font-size: 10px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.yr-live-card__time-value {
  font-family: var(--yr-font);
  font-size: 16px;
  font-weight: 800;
  color: #E8D5A8;
}

.yr-countdown__num {
  font-family: var(--yr-font);
  font-size: 14px;
  font-weight: 800;
  color: var(--yr-white);
}

/* ============================================
   SECTION 5: POSE CATEGORIES
   ============================================ */
.yr-poses {
  padding: 80px 0;
  background: var(--yr-white);
  font-family: var(--yr-font);
}

.yr-poses__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.yr-pose-cat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--yr-bg);
  border-radius: 14px;
  border: 1px solid var(--yr-border-light);
  text-decoration: none !important;
  transition: all 0.3s ease !important;
}

.yr-pose-cat:hover {
  border-color: var(--yr-accent);
  box-shadow: var(--yr-shadow-md);
  transform: translateY(-2px);
}

.yr-pose-cat__icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139,105,20,0.08);
  flex-shrink: 0;
}

.yr-pose-cat__name {
  font-family: var(--yr-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--yr-text);
}

/* ============================================
   SECTION 6: APP DOWNLOAD CTA
   ============================================ */
.yr-app-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--yr-primary) 0%, var(--yr-bg-dark) 100%);
  font-family: var(--yr-font);
}

.yr-app-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.yr-app-cta__buttons a {
  display: inline-block;
  transition: transform 0.2s !important;
}

.yr-app-cta__buttons a:hover {
  transform: translateY(-2px);
}

/* ============================================
   SECTION 7: CUSTOM FOOTER — Exact mockup match
   5-column: Brand | Practice | Learn | Account | Company
   ============================================ */
.yr-footer {
  background: var(--yr-bg-dark);
  font-family: var(--yr-font);
  padding: 64px 0 0;
}

.yr-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.yr-footer__logo {
  height: 56px;
  margin-bottom: 16px;
  filter: brightness(2);
}

.yr-footer__desc {
  font-family: var(--yr-font);
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  max-width: 280px;
  margin: 0;
}

.yr-footer__social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.yr-footer__social-link {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s !important;
}

.yr-footer__social-link:hover {
  background: rgba(139,105,20,0.3);
}

.yr-footer__col-title {
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.yr-footer__link {
  display: block;
  font-family: var(--yr-font);
  font-size: 14px;
  color: rgba(255,255,255,0.6) !important;
  text-decoration: none !important;
  padding: 6px 0;
  transition: color 0.2s !important;
}

.yr-footer__link:hover {
  color: #E8D5A8 !important;
}

.yr-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 16px;
}

.yr-footer__copyright {
  font-family: var(--yr-font);
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  margin: 0;
}

.yr-footer__bottom-apps {
  display: flex;
  gap: 12px;
}

.yr-footer__bottom-apps a {
  display: inline-block;
}

/* ============================================
   RESPONSIVE — Exact mockup breakpoints
   ============================================ */
@media (max-width: 1024px) {
  .yr-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yr-livestream__grid {
    grid-template-columns: 1fr;
  }
  .yr-poses__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yr-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .yr-hero__title {
    font-size: 44px !important;
  }
  .yr-section-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .yr-hero {
    min-height: 70vh;
  }
  .yr-hero__title {
    font-size: 36px !important;
  }
  .yr-hero__subtitle {
    font-size: 16px;
  }
  .yr-hero__stats {
    gap: 24px;
  }
  .yr-hero__stat-num {
    font-size: 24px;
  }
  .yr-hero__scroll {
    display: none;
  }
  .yr-features__grid {
    grid-template-columns: 1fr;
  }
  .yr-poses__grid {
    grid-template-columns: 1fr;
  }
  .yr-section-header {
    margin-bottom: 40px;
  }
  .yr-section-title {
    font-size: 28px;
  }
  .yr-section-desc {
    font-size: 16px;
  }
  .yr-features,
  .yr-videos,
  .yr-poses,
  .yr-app-cta,
  .yr-livestream {
    padding: 48px 0;
  }
  .yr-btn--white,
  .yr-btn--glass {
    padding: 14px 28px;
    font-size: 14px;
  }
  .yr-footer__grid {
    grid-template-columns: 1fr;
  }
  .yr-videos__scroll-row .yr-video-card {
    min-width: 280px;
    max-width: 280px;
  }
}

@media (max-width: 480px) {
  .yr-hero__title {
    font-size: 28px !important;
  }
  .yr-hero__ctas {
    flex-direction: column;
  }
  .yr-hero__ctas .yr-btn {
    width: 100%;
    justify-content: center;
  }
  .yr-hero__stats {
    flex-direction: column;
    gap: 16px;
  }
  .yr-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   HIDE MEGA MENU DROPDOWN ON HOMEPAGE
   Actual class is .sub-mega-menu (confirmed via DOM inspection)
   ============================================ */
body.home .sub-mega-menu,
body.home .parent-nav .sub-mega-menu,
body.home .parent-nav > .sub-mega-menu,
body.home li.parent-nav .sub-mega-menu,
body.page-template-front-page .sub-mega-menu,
body.page-template-front-page .parent-nav .sub-mega-menu,
body.page-template-front-page .parent-nav > .sub-mega-menu,
body.page-template-front-page li.parent-nav .sub-mega-menu,
.sub-mega-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
  max-height: 0 !important;
}

/* ============================================
   FROSTED GLASS HEADER
   Premium translucent nav bar with backdrop blur
   ============================================ */
.yr-header {
  background: rgba(44, 24, 16, 0.45) !important;
  backdrop-filter: blur(12px) saturate(1.4) !important;
  -webkit-backdrop-filter: blur(12px) saturate(1.4) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.yr-header.scrolled {
  background: rgba(255, 255, 255, 0.92) !important;
  backdrop-filter: blur(16px) saturate(1.6) !important;
  -webkit-backdrop-filter: blur(16px) saturate(1.6) !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

/* Nav links: white on transparent, dark on scrolled */
.yr-header .yr-nav__link {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.yr-header.scrolled .yr-nav__link {
  color: #5C4033 !important;
  text-shadow: none !important;
}

/* Also handle any WordPress nav items in the header */
.yr-header a:not(.yr-btn):not(.yr-btn--outline) {
  color: rgba(255, 255, 255, 0.95) !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}

.yr-header.scrolled a:not(.yr-btn):not(.yr-btn--outline) {
  color: #5C4033 !important;
  text-shadow: none !important;
}

/* My Account dropdown button */
.yr-header .yr-btn--outline {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: rgba(255, 255, 255, 0.95) !important;
}

.yr-header.scrolled .yr-btn--outline {
  border-color: #5C4033 !important;
  color: #5C4033 !important;
}

/* Logo brightness adjustment for transparent state */
.yr-header .yr-header__logo img {
  filter: brightness(1.2) !important;
}

.yr-header.scrolled .yr-header__logo img {
  filter: brightness(1) !important;
}


/* ============================================
   POSES LIBRARY PAGE — Exact Mockup Match
   ============================================ */

/* --- Poses Hero --- */
.revamp-poses-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: url('https://yogilive.blr1.cdn.digitaloceanspaces.com/wp-content/uploads/2024/01/banner-poses.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.revamp-poses-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.75) 0%, rgba(44,24,16,0.45) 100%);
}
.revamp-poses-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px 60px;
}
.revamp-breadcrumb-label {
  display: inline-block;
  font-family: var(--yr-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #D4A574;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.revamp-poses-hero-title {
  font-family: var(--yr-font);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.revamp-poses-hero-subtitle {
  font-family: var(--yr-font);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 400;
}

/* --- Poses Search Bar --- */
.revamp-poses-search-wrap {
  max-width: 680px;
  margin: -28px auto 0;
  position: relative;
  z-index: 10;
  padding: 0 20px;
}
.revamp-poses-search-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  box-shadow: var(--yr-shadow-md);
  padding: 6px 6px 6px 20px;
  gap: 12px;
}
.revamp-search-icon {
  flex-shrink: 0;
}
.revamp-poses-search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--yr-font);
  font-size: 15px;
  color: var(--yr-text);
  background: transparent;
  padding: 10px 0;
}
.revamp-poses-search-bar input::placeholder {
  color: #999;
}
.revamp-search-btn {
  background: var(--yr-primary);
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 10px 28px;
  font-family: var(--yr-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}
.revamp-search-btn:hover {
  background: var(--yr-primary-light);
}

/* --- Poses Main Layout --- */
.revamp-poses-main {
  display: flex;
  gap: 32px;
  max-width: 1200px;
  margin: 40px auto 60px;
  padding: 0 20px;
}

/* --- Sidebar --- */
.revamp-poses-sidebar {
  width: 260px;
  flex-shrink: 0;
}
.revamp-sidebar-games-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #FFF8F0 0%, #FFF2E0 100%);
  border: 1px solid var(--yr-border);
  border-radius: var(--yr-radius-sm);
  padding: 14px 16px;
  margin-bottom: 20px;
  text-decoration: none;
  transition: box-shadow 0.2s;
}
.revamp-sidebar-games-card:hover {
  box-shadow: var(--yr-shadow-md);
  text-decoration: none;
}
.revamp-games-icon {
  font-size: 24px;
  color: var(--yr-accent);
}
.revamp-sidebar-games-card strong {
  display: block;
  font-family: var(--yr-font);
  font-size: 14px;
  font-weight: 700;
  color: var(--yr-text);
}
.revamp-sidebar-games-card span {
  font-family: var(--yr-font);
  font-size: 12px;
  color: var(--yr-text-muted);
}
.revamp-sidebar-nav {
  background: #fff;
  border: 1px solid var(--yr-border);
  border-radius: var(--yr-radius-sm);
  padding: 20px 0;
}
.revamp-sidebar-title {
  font-family: var(--yr-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--yr-text-muted);
  text-transform: uppercase;
  padding: 0 20px 12px;
  border-bottom: 1px solid var(--yr-border-light);
  margin-bottom: 4px;
}
.revamp-cat-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.revamp-cat-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-family: var(--yr-font);
  font-size: 14px;
  color: var(--yr-text);
  text-decoration: none;
  transition: background 0.15s;
}
.revamp-cat-item a:hover {
  background: #FAF6F1;
  text-decoration: none;
}
.revamp-cat-item.active a {
  background: #FFF8F0;
  color: var(--yr-primary);
  font-weight: 600;
}
.revamp-cat-item a svg {
  color: var(--yr-accent);
  flex-shrink: 0;
}
.revamp-cat-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--yr-text-light);
  background: var(--yr-bg-alt);
  padding: 2px 8px;
  border-radius: 10px;
}
.revamp-cat-chevron {
  margin-left: auto;
  color: var(--yr-text-light);
}
.revamp-cat-fav a svg {
  color: #8B4513;
}
.revamp-mobile-cat-select {
  display: none;
}

/* --- Poses Content Area --- */
.revamp-poses-content {
  flex: 1;
  min-width: 0;
}
.revamp-poses-content-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.revamp-poses-section-title {
  font-family: var(--yr-font);
  font-size: 24px;
  font-weight: 800;
  color: var(--yr-text);
  margin: 0 0 4px;
}
.revamp-poses-total {
  font-family: var(--yr-font);
  font-size: 13px;
  color: var(--yr-text-muted);
  margin: 0;
}
.revamp-poses-view-toggle {
  display: flex;
  gap: 6px;
}
.revamp-toggle-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--yr-border);
  border-radius: 8px;
  background: #fff;
  font-family: var(--yr-font);
  font-size: 13px;
  color: var(--yr-text-muted);
  cursor: pointer;
  transition: all 0.15s;
}
.revamp-toggle-btn:hover {
  border-color: var(--yr-accent);
  color: var(--yr-accent);
}
.revamp-toggle-btn.active {
  background: var(--yr-primary);
  color: #fff;
  border-color: var(--yr-primary);
}
.revamp-toggle-btn.active svg {
  stroke: #fff;
}
.revamp-fav-toggle {
  border-color: #D4A574;
  color: #8B4513;
}

/* --- Pose Grid --- */
.revamp-poses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.revamp-pose-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--yr-border);
  border-radius: var(--yr-radius-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.revamp-pose-card:hover {
  box-shadow: var(--yr-shadow-hover);
  transform: translateY(-2px);
}
.revamp-pose-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  background: #F3EDE4;
  overflow: hidden;
}
.revamp-pose-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.revamp-pose-fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 3;
}
.revamp-pose-fav-btn:hover {
  background: #fff;
}
.revamp-pose-fav-btn svg {
  stroke: #D4A574;
}
.revamp-pose-card-info {
  padding: 14px 16px;
}
.revamp-pose-name {
  font-family: var(--yr-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--yr-text);
  margin-bottom: 2px;
}
.revamp-pose-sanskrit {
  font-family: var(--yr-font);
  font-size: 13px;
  color: var(--yr-text-muted);
  font-style: italic;
}

/* --- Poses View More --- */
.revamp-poses-viewmore {
  text-align: center;
  margin-top: 32px;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.revamp-viewmore-btn {
  display: inline-block;
  padding: 12px 36px;
  background: var(--yr-primary);
  color: #fff !important;
  font-family: var(--yr-font);
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.2s;
  cursor: pointer;
}
.revamp-viewmore-btn:hover {
  background: var(--yr-primary-light);
  text-decoration: none !important;
}
.revamp-reset-btn {
  display: inline-block;
  padding: 12px 36px;
  background: transparent;
  color: var(--yr-primary) !important;
  font-family: var(--yr-font);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--yr-primary);
  border-radius: 50px;
  text-decoration: none !important;
  cursor: pointer;
  transition: all 0.2s;
}
.revamp-reset-btn:hover {
  background: var(--yr-primary);
  color: #fff !important;
}

/* --- Poses Responsive --- */
@media (max-width: 992px) {
  .revamp-poses-main {
    flex-direction: column;
  }
  .revamp-poses-sidebar {
    width: 100%;
    display: none;
  }
  .revamp-mobile-cat-select {
    display: block;
    margin-bottom: 20px;
  }
  .revamp-mobile-cat-select select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--yr-border);
    border-radius: var(--yr-radius-xs);
    font-family: var(--yr-font);
    font-size: 14px;
    background: #fff;
  }
  .revamp-poses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .revamp-poses-hero-title {
    font-size: 28px;
  }
  .revamp-poses-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================
   ON-DEMAND VIDEOS PAGE — Exact Mockup Match
   ============================================ */

/* --- Videos Hero --- */
.revamp-videos-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  background: url('https://yogilive.blr1.cdn.digitaloceanspaces.com/wp-content/uploads/2024/01/banner-classes.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
.revamp-videos-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,24,16,0.75) 0%, rgba(44,24,16,0.45) 100%);
}
.revamp-videos-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 20px 60px;
}
.revamp-videos-hero-title {
  font-family: var(--yr-font);
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}
.revamp-videos-hero-subtitle {
  font-family: var(--yr-font);
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-weight: 400;
}

/* --- Videos Filter Bar --- */
.revamp-videos-filter-bar {
  background: #FAF6F1;
  border-bottom: 1px solid var(--yr-border);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 50;
}
.revamp-videos-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.revamp-filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}
.revamp-pill {
  padding: 8px 18px;
  border: 1px solid #E8DFD4;
  border-radius: 20px;
  background: #fff;
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 500;
  color: #6B5744;
  cursor: pointer;
  transition: all 0.15s;
  white-space: nowrap;
}
.revamp-pill:hover {
  border-color: var(--yr-accent);
  color: var(--yr-accent);
}
.revamp-pill.active {
  background: #8B6914;
  color: #fff;
  border-color: #8B6914;
}
.revamp-pill-fav {
  border-color: #D4A574;
  color: #8B4513;
}
.revamp-pill-fav.active {
  background: #8B4513;
  border-color: #8B4513;
  color: #fff;
}
.revamp-pill-filter {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* --- Extended Filters --- */
.revamp-extended-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0 8px;
  border-top: 1px solid var(--yr-border-light);
  margin-top: 8px;
  align-items: flex-end;
}
.revamp-filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.revamp-filter-group label {
  font-family: var(--yr-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--yr-text-muted);
  text-transform: uppercase;
}
.revamp-filter-select {
  padding: 8px 12px;
  border: 1px solid var(--yr-border);
  border-radius: 8px;
  font-family: var(--yr-font);
  font-size: 13px;
  color: var(--yr-text);
  background: #fff;
  min-width: 140px;
}
.revamp-filter-clear {
  padding: 8px 20px;
  background: transparent;
  border: 1px solid var(--yr-primary);
  border-radius: 8px;
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--yr-primary);
  cursor: pointer;
  transition: all 0.15s;
}
.revamp-filter-clear:hover {
  background: var(--yr-primary);
  color: #fff;
}

/* --- YTT Subcategory --- */
.revamp-ytt-subcat {
  padding: 12px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.revamp-ytt-subcat label {
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--yr-text-muted);
}

/* --- Filter Meta --- */
.revamp-filter-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.revamp-showing-count {
  font-family: var(--yr-font);
  font-size: 13px;
  color: var(--yr-text-muted);
}
.revamp-schedule-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--yr-font);
  font-size: 13px;
  font-weight: 600;
  color: var(--yr-primary);
  text-decoration: none;
}
.revamp-schedule-link:hover {
  text-decoration: underline;
  color: var(--yr-primary);
}

/* --- Video Grid --- */
.revamp-videos-grid-wrap {
  max-width: 1200px;
  margin: 32px auto 60px;
  padding: 0 20px;
}
.revamp-videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.revamp-video-card {
  position: relative;
  background: #fff;
  border: 1px solid #F0E8DD;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.revamp-video-card:hover {
  box-shadow: var(--yr-shadow-hover);
  transform: translateY(-2px);
}
.revamp-video-thumb {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #2C1810;
  overflow: hidden;
}
.revamp-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.revamp-video-cat-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 4px;
  font-family: var(--yr-font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
}
.revamp-video-duration-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.7);
  font-family: var(--yr-font);
  font-size: 11px;
  font-weight: 600;
  color: #fff;
}
.revamp-video-fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s;
}
.revamp-video-fav-btn:hover {
  background: #fff;
}
.revamp-video-fav-btn i {
  font-size: 14px;
  color: #D4A574;
}
.revamp-video-info {
  padding: 14px 16px;
}
.revamp-video-instructor-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 10px;
}
.revamp-instructor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--yr-font);
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.revamp-video-title {
  font-family: var(--yr-font);
  font-size: 15px;
  font-weight: 700;
  color: var(--yr-text);
  line-height: 1.3;
  margin-bottom: 2px;
}
.revamp-video-coach {
  font-family: var(--yr-font);
  font-size: 13px;
  color: var(--yr-text-muted);
}
.revamp-video-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.revamp-video-time {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--yr-font);
  font-size: 12px;
  color: var(--yr-text-light);
}
.revamp-video-level {
  padding: 2px 10px;
  border-radius: 4px;
  font-family: var(--yr-font);
  font-size: 11px;
  font-weight: 600;
}

/* --- Videos View More --- */
.revamp-videos-viewmore {
  text-align: center;
  margin-top: 32px;
}

/* --- Videos Responsive --- */
@media (max-width: 992px) {
  .revamp-videos-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .revamp-filter-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .revamp-filter-pills::-webkit-scrollbar {
    display: none;
  }
}
@media (max-width: 576px) {
  .revamp-videos-hero-title {
    font-size: 28px;
  }
  .revamp-videos-grid {
    grid-template-columns: 1fr;
  }
  .revamp-extended-filters {
    flex-direction: column;
  }
  .revamp-filter-select {
    width: 100%;
  }
}

/* --- Page-level overrides for poses/classes pages --- */
body.page-template-yoga_all_poses #content,
body.page-template-yoga-classes #content {
  padding: 0 !important;
  margin: 0 !important;
}
body.page-template-yoga_all_poses .container-fluid > .row > .col-md-12,
body.page-template-yoga-classes .container-fluid > .row > .col-md-12 {
  padding: 0 !important;
}
body.page-template-yoga_all_poses .entry-content,
body.page-template-yoga-classes .entry-content {
  padding: 0 !important;
  margin: 0 !important;
}
body.page-template-yoga_all_poses .header-wrap.page-banner,
body.page-template-yoga-classes .header-wrap.page-banner {
  display: none !important;
}

/* Hide old filter sections on classes page */
body.page-template-yoga-classes .mobile-filter-section,
body.page-template-yoga-classes .desktop-filter-section,
body.page-template-yoga-classes .yoga-class-grid-view-section > .container > .row:first-child {
  display: none !important;
}


/* ============================================
   GLOBAL HEADER/FOOTER OVERRIDES
   Match mockup exactly on ALL revamp pages
   ============================================ */

/* --- HIDE OLD TOP BAR (social icons, search, app store links) --- */
#topbar.topclass {
  display: none !important;
}

/* --- HIDE old header extras: social media row, app links, search bar in header --- */
.banner.headerclass .header-social-media,
.banner.headerclass .header-app-link,
.banner.headerclass #topbar-search,
.banner.headerclass .topbar-widget {
  display: none !important;
}

/* --- RESTYLE MAIN HEADER NAV to match mockup --- */
.banner.headerclass {
  background: rgba(44, 24, 16, 0.25) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 1000 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

/* When scrolled, make header solid */
.banner.headerclass.header-scrolled {
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06) !important;
}

/* Nav items: correct selector .main-nav-manu, match mockup exactly */
.main-nav-manu li.parent-nav > a,
.sf-menu > li > a,
.sf-menu > li.parent-nav > a {
  font-family: 'Lato', system-ui, -apple-system, sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  color: #FFFFFF !important;
  border: none !important;
  border-left: none !important;
  border-right: none !important;
  padding: 8px 16px !important;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3) !important;
  transition: color 0.2s !important;
  text-decoration: none !important;
}
.main-nav-manu li.parent-nav > a:hover,
.sf-menu > li > a:hover {
  color: #fff !important;
  background: transparent !important;
  opacity: 0.8;
}

/* When header is scrolled, nav text goes dark */
.banner.headerclass.header-scrolled .main-nav-manu li.parent-nav > a,
.banner.headerclass.header-scrolled .sf-menu > li > a {
  color: var(--yr-text) !important;
  text-shadow: none !important;
}
.banner.headerclass.header-scrolled .sf-menu > li > a:hover {
  color: var(--yr-accent) !important;
}

/* Remove all borders between nav items */
.main-nav-manu li.parent-nav,
.sf-menu > li {
  border: none !important;
  border-left: none !important;
  border-right: none !important;
}
.main-nav-manu li.parent-nav + li.parent-nav,
.sf-menu > li + li {
  border-left: none !important;
}
.header-nav-section,
.main-nav-manu {
  border: none !important;
}

/* PLANS button styling — mockup: #8B6914 bg, 13px, 700, 8px radius */
a.top-plans-button,
.header-nav-section a[href*="profile"],
a.btn-plans-header,
.sf-menu > li.menu-item-plans > a {
  background: #8B6914 !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  text-decoration: none !important;
}

/* SIGN IN button styling — mockup: rgba(255,255,255,0.15) bg, 13px, 700, 8px radius */
a#signInNowBtn,
.header-user-login a,
.sign-up-section a#signInNowBtn {
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 8px !important;
  padding: 10px 24px !important;
  color: #FFFFFF !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  text-shadow: none !important;
  background: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(4px) !important;
  text-decoration: none !important;
}
.banner.headerclass.header-scrolled a#signInNowBtn,
.banner.headerclass.header-scrolled .header-user-login a,
.banner.headerclass.header-scrolled .sign-up-section a#signInNowBtn {
  border-color: #8B6914 !important;
  color: #FFFFFF !important;
  background: #54340A !important;
}

/* Hide START FREE TRIAL button (not in mockup) */
.trial-button-static,
a.trial-button-static,
.start-free-trial-btn {
  display: none !important;
}

/* --- HIDE OLD FOOTER COMPLETELY --- */
#containerfooter.footerclass {
  display: none !important;
}
.footerclass {
  display: none !important;
}
.footer-newsletter {
  display: none !important;
}
.footercredits {
  display: none !important;
}

/* --- HIDE OLD PAGE BANNER on all revamp pages --- */
.header-wrap.page-banner,
.header-wrap.page-banner.inner-header-banner {
  display: none !important;
}

/* --- NEW REVAMP FOOTER STYLES --- */
.revamp-footer {
  background: #2C1810;
  padding: 60px 0 0;
  font-family: var(--yr-font);
}
.revamp-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
}
.revamp-footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  line-height: 1.6;
  margin: 12px 0 20px;
}
.revamp-footer-brand img {
  height: 48px;
  width: auto;
}
.revamp-footer-social {
  display: flex;
  gap: 12px;
}
.revamp-footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s;
}
.revamp-footer-social a:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
.revamp-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #D4A574;
  margin: 0 0 16px;
}
.revamp-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.revamp-footer-col ul li {
  margin-bottom: 10px;
}
.revamp-footer-col ul li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.revamp-footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}
.revamp-footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.revamp-footer-bottom p {
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  margin: 0;
}
.revamp-footer-bottom img {
  height: 32px;
  width: auto;
}

@media (max-width: 768px) {
  .revamp-footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .revamp-footer-brand {
    grid-column: 1 / -1;
  }
  .revamp-footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .revamp-footer-inner {
    grid-template-columns: 1fr;
  }
}

/* --- Ensure content starts below fixed header --- */
body #wrapper.container {
  padding-top: 80px !important;
}

/* --- Hide mega menu dropdowns --- */
.sub-mega-menu,
.sf-mega,
ul.sub-menu {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}


/* ============================================
   ADDITIONAL FIXES — Hide old elements on ALL pages
   ============================================ */

/* Hide the old top search bar container on ALL pages */
.top-search {
  display: none !important;
}

/* Hide the old header social media section */
.header-social-media {
  display: none !important;
}

/* Hide the old header app link section */
.header-app-link {
  display: none !important;
}

/* Hide the old page banner (inner pages) — the large logo circle + title */
.header-wrap.page-banner.inner-header-banner {
  display: none !important;
}

/* Also hide the trial button on all pages */
.trial-button-static {
  display: none !important;
}

/* Fix logo size on ALL pages — mockup has ~50px logo, not 120px */
#thelogo {
  width: 50px !important;
  height: 50px !important;
}
#thelogo img {
  width: 50px !important;
  height: 50px !important;
  max-width: 50px !important;
  border-radius: 50% !important;
}
.brand.logofont {
  display: flex !important;
  align-items: center !important;
}

/* Ensure the fixed header doesn't overlap content on inner pages */
body #wrapper.container {
  padding-top: 80px !important;
}

/* Make sure the old WordPress footer is hidden on ALL pages */
footer#containerfooter,
footer.footerclass,
#containerfooter {
  display: none !important;
}

/* Also hide the footer newsletter section */
.footer-newsletter {
  display: none !important;
}

/* Hide footer credits */
.footercredits {
  display: none !important;
}

/* Hide the old footer border image */
.footer-border {
  display: none !important;
}

/* Hide old footer address/phone sections */
.footer-address,
.footer-phone {
  display: none !important;
}
