/* =====================================================
   GLOBAL MOBILE REFINEMENTS
===================================================== */

.mobile-links.mobile-only {
    display: none;
    align-items: center;
    gap: 20px;
}


@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }

  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  h3 { font-size:18px; }
}


/* =====================================================
   HEADER
===================================================== */
@media (max-width: 992px) {
  .nav {
    display: none;
  }

  .header-inner {
    padding: 0 20px;
    position: relative;
    justify-content: center;
  }

  .header-link {
    font-size: 14px;
    display: none !important;
  }

  .icon-btn svg {
    width: 23px;
    height: 23px;
  }

  .custom-logo {
    max-height: 40px;
  }

  .logo {
/*     width: 150px; */
  }

  .header-actions {
    display: flex;
    justify-content: space-between;
    width: 100%;
	  gap: 10px;
  }

  .site-header {
    position: relative;
  }
}


/* =====================================================
   HERO SECTION
===================================================== */
@media (max-width: 992px) {
  .hero-video {
    height: 70vh;
    min-height: 500px;
    margin: 20px;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 12px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
}


/* =====================================================
   STATS VISUAL
===================================================== */
@media (max-width: 992px) {
  .stats-visual-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-card {
    min-height: 360px;
    padding: 30px;
  }

  .stat-content h2 {
    font-size: 30px;
  }
}


/* =====================================================
   PROGRAMS GRID
===================================================== */
@media (max-width: 992px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .program-image {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   WHY SECTION
===================================================== */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* =====================================================
   FEATURED PRODUCTS
===================================================== */
@media (max-width: 992px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }

  .product-feature img {
    height: 220px;
  }
}


/* =====================================================
   FAQ SECTION
===================================================== */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   PRESS LOGOS
===================================================== */
@media (max-width: 768px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================================================
   PROGRAM INNER PAGE
===================================================== */
@media (max-width: 992px) {
  .program-hero {
    height: 320px;
  }

  .program-hero-content h1 {
    font-size: 25px;
  }

  .how-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 600px) {
  .how-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   SHOP PAGE
===================================================== */
@media (max-width: 992px) {
  .shop-wrapper {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }
}


/* =====================================================
   SINGLE PRODUCT
===================================================== */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 20px;
  }

  .product-title {
    font-size: 22px;
  }
	.press-item{font-size: 12px;}
	.press-item img {
    max-height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
}


/* =====================================================
   BLOG
===================================================== */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .daily-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =====================================================
   FOOTER
===================================================== */
@media (max-width: 992px) {
  .footer-top,
  .footer-columns {
    flex-direction: column;
    gap: 40px;
   
  }

  .footer-col {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 0;
  }

  .woocommerce-account .woocommerce {
    max-width: 100%;
    margin: 40px auto;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  ul.footer-payments {
    display: flex;
    list-style: none;
    gap: 5px;
    padding: 0;
  }

  .mobile-extra-links {
    height: 200px;
  }
}


/* =====================================================
   HAMBURGER MENU
===================================================== */
.hamburger {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 26px;
  height: 2px;
  background: #111;
  display: block;
  transition: 0.3s ease;
}


.logo.mobile-only {
    display: none;
}

/* =====================================================
   MOBILE DRAWER
===================================================== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(3px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 380px;
  height: 100%;
  background: #fff;
  padding: 60px 30px;
  transform: translateX(100%);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
}

.mobile-menu.active .mobile-menu-inner {
  transform: translateX(0);
}

.mobile-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  margin-bottom: 25px;
}

.mobile-nav-menu a {
  text-decoration: none;
  font-size: 20px;
  color: #111;
}

.mobile-extra-links {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mobile-extra-links a {
  font-size: 16px;
  color: #666;
  text-decoration: none;
}

@media (max-width: 992px) {
  .hamburger {
    display: flex;
	          width: 60px;
  }
	    .mobile-links.mobile-only {
        display: flex;
        width: 60px;
    }
	.logo.desktop-only {
    display: none;
}
	.logo.mobile-only {
    
    display: block;
}
.stats-intro h2 {
    font-family: 'DM Sans';
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    line-height: 1.2;
}
.faq-title {
    font-family: 'DM Sans';
    font-size: 28px;
    margin-bottom: 50px;
}
.why-header h2 {
    font-family: 'DM Sans';
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.2;
}
.programs-header h2 {
    font-family: 'DM Sans';
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.2;
}
.stats-visual {
    padding: 50px 0;
}
}

@media (max-width: 992px) {

  .product-slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .product-slider::-webkit-scrollbar {
    display: none;
  }



}
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}
.featured-grid.bottom-row.desktop-only{
	display:grid
}
@media (max-width: 992px) {

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: flex;
  }

  .product-slider {
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-feature {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: start;
	  width: 80%;
  }
	.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
    align-content: center;
    text-align: center;
    gap: 20px;
}

}

/* ===============================
   PROGRAM GRID → MOBILE SLIDER
================================= */

@media (max-width: 992px) {

  .programs-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .programs-grid::-webkit-scrollbar {
    display: none;
  }

  .program-card {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: start;  width: 80%;
  }

}

/* =========================================
   HOMEPAGE CATALOG – MOBILE PERFECT VIEW
========================================= */

@media (max-width: 600px) {

  /* Section spacing */
  .hp-catalog {
    padding: 40px 0;
  }

  /* Header layout */
  .hp-catalog-header {
    flex-direction: column;
    gap: 25px;
    margin-bottom: 35px;
  }

  .hp-left h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .hp-left p {
    font-size: 15px;
  }

  /* Badges */
  .hp-right {
    margin-right: 0;
    gap: 12px;
  }

  .hp-badge {
    font-size: 13px;
  }

  .hp-badge img {
    width: 22px;
  }

  /* ===== MAIN LARGE CARDS ===== */

  .hp-main-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

      .hp-card {
        min-height: 172px;
        padding: 25px;
        border-radius: 22px;
    }

  .hp-card-content {
    height: auto;
  }

  .hp-card-content h3 {
    font-size: 22px;
  }

  .hp-card-content p {
    font-size: 13px;
    margin-bottom: 18px;
  }

  .hp-link {
    font-size: 12px;
  }

  .hp-link svg {
    width: 18px;
    height: 18px;
  }

  /* ===== SMALL CARDS GRID ===== */

  .hp-small-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .hp-small-card {
    padding: 18px;
    height: auto;
    min-height: 110px;
    border-radius: 18px;
  }

  .hp-small-card h4 {
    font-size: 15px;
  }

  .hp-small-card p {
    font-size: 11px;
  }

  .hp-small-card div {
    width: auto;
  }

	    .hp-small-card {
        padding: 18px;
        height: auto;
        min-height: 180px;
        border-radius: 18px;
			    background-size: contain !important;
    background-position-x: 100% !important;
    background-repeat: no-repeat !important;
    background-position-y: 120% !important;
			display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-direction: column;
    align-content: center;

    }
	.hp-card-content {
    height: 170px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
}
	.container-narrow {
  
    padding: 0 20px;
}
}
/* =========================================
   VITALITY SECTION – MOBILE PERFECT VIEW
========================================= */

@media (max-width: 600px) {

  .hp-vitality-section {
    padding: 20px 0 40px;
  }

  .hp-vitality-card {
    flex-direction: column;
    padding: 0;
    border-radius: 30px;
    overflow: hidden;
    background: #f3f3f3; /* soft neutral like screenshot */
  }

  /* LEFT CONTENT */
  .hp-vitality-content {
    padding: 35px 25px 10px;
    max-width: 100%;
  }

  .hp-vitality-content h2 {
    font-size: 30px;
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .hp-vitality-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  /* LIST */
  .hp-vitality-list li {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hp-check {
    width: 22px;
    height: 22px;
  }

  .hp-check::after {
    font-size: 12px;
  }

  /* BUTTON */
  .hp-vitality-btn {
    width: fit-content;
    padding: 14px 28px;
    font-size: 14px;
    border-radius: 40px;
    margin-bottom: 30px;
  }

  /* IMAGE */
  .hp-vitality-image {
    justify-content: center;
    margin-top: 10px;
  }

  .hp-vitality-image img {
    max-height: 380px;
    width: auto;
    object-fit: contain;
  }

}

/* =========================================

/* =========================================
   SPLIT-SCREEN HERO — MOBILE CENTER FIX
========================================= */
@media (max-width: 992px) {
  .split-screen {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .split-left,
  .split-right {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }
}

/* =========================================
   FEATURED PRODUCTS — MOBILE (Hims-style)
   Full-width stacked cards, one at a time
========================================= */
@media (max-width: 992px) {
  .product-slider.mobile-only {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0;
  }

  .product-slider.mobile-only .shop-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  }


















    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    gap: 6px;
    z-index: 2;
  }

  .product-slider.mobile-only .shop-card-content {
    padding: 20px;
  }

  .product-slider.mobile-only .shop-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 4px;
  }

  .product-slider.mobile-only .shop-card-title a {
    color: #1a1a1a;
    text-decoration: none;
  }

  .product-slider.mobile-only .shop-card-price {
    font-size: 15px;
    color: #16a34a;
    margin-bottom: 8px;
  }

  .product-slider.mobile-only .shop-card-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .product-slider.mobile-only .shop-card-disclaimer {
    text-align: center;
    margin-bottom: 4px;
  }

  .product-slider.mobile-only .shop-card-disclaimer a {
    font-size: 13px;
    color: #666;
    text-decoration: underline;
  }

  .product-slider.mobile-only .shop-card-actions {
    display: flex;
    flex-direction: row;
    gap: 10px;
    margin-top: 8px;
  }

  .product-slider.mobile-only .btn-view-product,
  .product-slider.mobile-only .btn-learn {
    flex: 1;
    text-align: center;
    padding: 14px 16px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
  }

  .product-slider.mobile-only .btn-view-product {
    background: #1a1a1a;
    color: #fff;
  }

  .product-slider.mobile-only .btn-learn {
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid #ddd;
  }
}

/* =========================================
   MOBILE MENU — CTA PILL BUTTONS
========================================= */
@media (max-width: 992px) {
  .mobile-extra-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px 24px 0;
  }

  .mobile-extra-links a.mobile-btn-login,
  .mobile-extra-links a.mobile-btn-getstarted {
    display: block;
    text-align: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .mobile-extra-links a.mobile-btn-login {
    background: #fff;
    color: #1a1a1a;
    border: 1.5px solid #1a1a1a;
  }

  .mobile-extra-links a.mobile-btn-getstarted {
    background: #1a1a1a;
    color: #fff;
    border: 1.5px solid #1a1a1a;
  }

  .mobile-extra-links a.mobile-btn-login:active,
  .mobile-extra-links a.mobile-btn-getstarted:active {
    opacity: 0.7;
  }
}
