/* Lock horizontal scroll - prevent mobile wobble */
html, body { overflow-x: hidden; }
:root {
  --bg: #f6f4ef;
  --text: #535353;
  --muted: #6b6b6b;
  --primary: #000000;
  --white: #ffffff;
  --radius: 30px;
  --container: 100%;
	 --container-narrow: 90%;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  
  color: var(--text);
}

h1,h2,h3,h4 {
  font-family: 'DM Sans', sans-serif;
  margin: 0 0 16px;
}

.container {
  max-width: var(--container);
  margin: auto;
  padding: 0 40px;
}
.container-narrow {
    max-width: var(--container-narrow);
    margin: auto;
    padding: 0 40px;
}
.press-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: center;
	flex-direction: column;
}


/* ================= CART DRAWER ================= */

.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 9999;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease;
}

.cart-drawer.active {
  visibility: visible;
  opacity: 1;
}

.cart-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.cart-drawer-inner {
  position: absolute;
  right: 0;
  top: 0;
  width: 420px;
  max-width: 100%;
  height: 100%;
  background: #fff;
  padding: 40px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: 0.3s ease;
}

.cart-drawer.active .cart-drawer-inner {
  transform: translateX(0);
}

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

.cart-footer {
  margin-top: 30px;
}
a.added_to_cart.wc-forward {
    display: none;
}

/* =============================
   CLEAN MINI CART DESIGN
============================= */

.mini-cart-products {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mini-cart-item {
  display: flex;
  gap: 15px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}

.mini-cart-image img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 12px;
}

.mini-cart-details {
  flex: 1;
}

.mini-cart-title {
  font-weight: 500;
  text-decoration: none;
  color: #111;
  display: block;
  margin-bottom: 6px;
}

.mini-cart-meta {
  font-size: 14px;
  color: #666;
}

.mini-cart-remove {
  position: absolute;
  right: 0;
  top: 20px;
  font-size: 20px;
  color: #999;
  text-decoration: none;
}

.mini-cart-remove:hover {
  color: #000;
}

.mini-cart-subtotal {
  display: flex;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid #eee;
}

.mini-cart-empty {
  padding: 40px 0;
  text-align: center;
  color: #777;
}

/* Header */
.site-header {
  background: var(--white);
  padding: 20px 0;
  
}

.icon-btn svg {
    width: 30px;
    height: 30px;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 45px;
  list-style: none;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text);
}

/* Hero */
.hero {
  padding: 30px 0;
  text-align: center;
  background: var(--white);
}

.btn {
  padding: 15px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
	min-width:150px
}

.btn-primary {
  background: var(--primary);
  color: white;
	    text-align: center;
}

/* Stats */
.stats {
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat h2 {
  font-size: 35px;
}

/* Cards */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

/* WooCommerce */
.product-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  list-style: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

/* ================= HEADER ================= */

.site-header {
  background: var(--white);
  padding: 18px 0;

  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  justify-self: start;
}

.logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 22px;
  font-weight: 500;
  text-decoration: none;
  color: var(--text);
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-menu ul{
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}

.nav-menu li {
  list-style: none;
}

.nav-menu a {
  font-size: 20px;
  
  color: var(--text);
  text-decoration: none;
  position: relative;
}

.nav-menu a:hover {
  opacity: 0.7;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}
.custom-logo {
    max-height: 50px;
    width: auto;
}

.header-link {
  font-size: 20px;
  
  color: var(--muted);
  text-decoration: none;
}

.icon-btn {
  background: none;
  border: none;
  font-size: 18px;
  cursor: pointer;
}

/* ================= FOOTER ================= */

.site-footer {
  background: var(--white);
  border-top: 1px solid #e8e6df;
  margin-top: 20px;
  padding-top: 60px;
}
ul.footer-payments {
    display: flex;
    list-style: none;
    gap: 5px;
}
ul.footer-payments li svg {
    width: 60px;
    height: 45px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-brand h3 {
  font-family: 'DM Sans';
  font-size: 22px;
  margin: 0;
}

.footer-columns {
    display: flex;
    gap: 80px;
    width: 75%;
}
.footer-col {
    width: 25%;

}
.footer-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ccc;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 16px;
  color: var(--muted);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--text);
}

.footer-bottom {
    border-top: 1px solid #eae7df;
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #888;
    align-items: center;
}


.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin: 40px 0 0;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  margin: 0 !important;
}



/* ================= HERO VIDEO ================= */

.hero-video {
  position: relative;
  height: 65vh;
  min-height: 650px;
  overflow: hidden;
  border-radius: 18px;
  margin: 10px 40px 0;
}

.stat-card:after {
    background: #00000061;
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
} 
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.35),
    rgba(0,0,0,0.45)
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  color: white;
}

.hero-content h1 {
    font-family: 'DM Sans';
    font-size: 35px;
    font-weight: 100;
    line-height: 1;
    max-width: 900px;
    margin-bottom: 5px;
}

.hero-content p {
  font-size: 18px;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.btn-secondary {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
}


.hero-content {
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= VISUAL STATS SECTION ================= */

.stats-visual {
  padding: 40px 0;
}

.stats-visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.stat-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  min-height: 460px;
  padding: 50px;
  color: white;
  display: flex;
  align-items: flex-start;
}

.stat-light {
  background: #dcebea;
}

.stat-blue {
  background: #6f7f95;
}

.stat-red {
  background: #f47b7b;
}

.stat-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
}
.stat-graph {
    width: 100%;
}

.stat-content {
  position: relative;
  z-index: 3;
  max-width: 75%;
}

.stat-content h2 {
  font-family: 'DM Sans';
  font-size: 35px;
  font-weight: 600;
	line-height:1;
  margin-bottom: 10px;
}

.stat-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.stat-content p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.95;
}


/* ===== Animated Heading Clean Version ===== */

.hp-animated-title {
    font-size: 48px;
    font-weight: 600;
    line-height: 1.2;
}

.hp-static {
    display: block;
	color: #000;
}

.hp-dynamic-wrapper {
    display: block;
    position: relative;
    height: 1.2em;
    overflow: hidden;
}

#hp-dynamic-text {
    display: block;
    transform: translateY(100%);
    opacity: 0;
	color:#12a96e;
}
h2.hp-animated-title {
    display: flex;
    gap: 5px;
    flex-direction: column;
}
.hp-static {
    display: block;
   
}
/* ====== INTRO BLOCK ====== */

.stats-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.stats-intro h2 {
  font-family: 'DM Sans';
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 25px;
}

.stats-intro p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 35px;
}

.stats-intro .btn {
  padding: 15px 40px;
  border-radius: 30px;
}


/* ================= PROGRAMS SECTION ================= */

.programs-section {
  padding: 30px 0;
}

.programs-header {
  max-width: 650px;
	margin: 0px auto;
    text-align: center;
  margin-bottom: 60px;
}

.programs-header h2 {
  font-family: 'DM Sans';
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.programs-header p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 25px;
}

.programs-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.program-card {
  transition: transform 0.4s ease;
}

.program-card:hover {
  transform: translateY(-6px);
}

.program-image {
border-radius: 18px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 300px;
}

.program-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.program-card:hover img {
  transform: scale(1.05);
}

.program-card h3 {
  font-family: 'DM Sans';
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}

.program-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 2px;
}
.program-card-content p {
  font-size: 14px;
  color: #fff;
  margin: 2px;
}


@media (max-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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


/* ================= WHY CELIA SECTION ================= */

.why-section {
  padding: 30px 0;
}

.why-header {
  max-width: 700px;
  margin-bottom: 70px;
}

.why-header h2 {
  font-family: 'DM Sans';
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 18px;
}

.why-header p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 25px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
    background: #f6f4ef;
    border-radius: 20px;
    padding: 20px 20px;
    min-height: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.why-icon {
  width: 100%;
  margin-bottom: 25px;
  opacity: 0.9;
}

.why-card h3 {
  font-family: 'DM Sans';
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}

.why-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}


/* ================= FEATURED PRODUCTS ================= */

.featured-products {
  padding: 30px 0;
}

.featured-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.bottom-row {
  grid-template-columns: repeat(3, 1fr);
}

/* ===== VIDEO CARD ===== */

.video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 420px;
}

.video-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.video-content {
  position: relative;
  z-index: 2;
  color: white;
  padding: 45px;
  max-width: 320px;
}

.video-content h3 {
  font-family: 'DM Sans';
  font-size: 24px;
  margin-bottom: 15px;
}

.video-content p {
  font-size: 14px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.btn-white {
  background: white;
  color: #111;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}

/* ===== PRODUCT CARDS ===== */

.product-feature {
    background: #f6f4ef;
    border-radius: 22px;
    padding: 0px 0px 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.product-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.06);
}

.product-feature img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 25px;
}

.product-info h4 {
  font-family: 'DM Sans';
  font-size: 24px;
  margin-bottom: 8px;
}

.product-info {
    padding: 0 25px 20px;
}
.product-info p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.product-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 12px;
}

.btn-hp-primary {
    flex: 1;
    background: #000000;
    color: #fff !important;
    border-radius: 50px;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    border: none;
    transition: background 0.15s;
    white-space: nowrap;
}
.btn-hp-primary:hover {
    background: #12a96e;
}
.btn-hp-outline {
    flex: 1;
    background: transparent;
    color: #0d1b2e !important;
    border-radius: 50px;
    padding: 11px 14px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    text-decoration: none !important;
    border: 1.5px solid rgba(0,0,0,0.25);
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
}
.btn-hp-outline:hover {
    border-color: #0d1b2e;
}

.badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #f3f3f3;
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
}

/* ===== RESPONSIVE ===== */

@media (max-width: 1100px) {

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .bottom-row {
    grid-template-columns: 1fr;
  }

  .video-card {
    min-height: 350px;
  }
}

/* ================= FUNCTIONS SECTION ================= */

.function-section {
  padding: 30px 0;
}

.function-header {
  max-width: 800px;
  margin-bottom: 60px;
}

.function-header h2 {
  font-family: 'DM Sans';
  font-size: 35px;
  font-weight: 600;
  margin-bottom: 20px;
}

.function-header p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 25px;
}

.function-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.function-card {
  transition: transform 0.4s ease;
}

.function-card:hover {
  transform: translateY(-6px);
}

.function-image {
border-radius: 18px;
    overflow: hidden;
    margin-bottom: 15px;
    height: 300px;
}

.function-image img {
  width: 100%;
  
  object-fit: cover;
  transition: transform 0.6s ease;
}

.function-card:hover img {
  transform: scale(1.05);
}

.function-card h3 {
  font-family: 'DM Sans';
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 2px;
}

.function-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 2px;
}
.function-card-content p {
  font-size: 14px;
  color: #fff;
  margin: 2px;
}


@media (max-width: 1200px) {
  .function-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .function-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ================= PEPTIDES FAQ ================= */

.peptides-faq {
  padding: 30px 0;
}

.faq-title {
  font-family: 'DM Sans';
  font-size: 36px;
  margin-bottom: 50px;
	width: 40%;
}

/* IMPORTANT CHANGE */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start; /* prevents stretching */
}
.data-title span {
    width: 30%;
}
.faq-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 32px;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 16px rgb(0 0 0 / 22%);
}

.faq-item.active {
  background: #e2e6e0;
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-header h4 {
  font-family: 'DM Sans';
  font-size: 22px;
  margin: 0;
}

.faq-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* Smooth height animation */
.faq-content {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  opacity: 0;
}

.faq-item.active .faq-content {
  max-height: 300px;
  margin-top: 18px;
  opacity: 1;
}

.faq-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.faq-page .faq-nav a.btn.btn-outline {
    color: #000;
    border: 1px solid #ccc;
    flex: 1;
    display: flex;
    justify-content: center;
    padding: 14px 5px;
    border-radius: 40px;
}

/* ================= PRESS LOGOS ================= */

.press-logos {
  padding: 60px 0 60px;
  background: #ffffff;
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 60px;
  text-align: center;
}

.press-item img {
    max-height: 34px;
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.press-item img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

@media (max-width: 992px) {
  .press-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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



/* ===== PROGRAM HERO ===== */
.container.margin-10 {
    margin: 10px;
}
.program-hero {
  position: relative;
  height: 420px;
  background: url('../images/program-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  border-radius: 22px;
  margin-top: 40px;
}

.program-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  border-radius: 22px;
}

.program-hero-content {
  position: relative;
  color: #fff;
  max-width: 500px;
}

/* ===== HOW IT WORKS ===== */

.how-it-works {
  padding: 100px 0 10px;
}
.how-item h4 {
    font-size: 24px;
}
.how-header {
    display: flex;
    
    align-items: flex-start;
    margin-bottom: 60px;
    flex-direction: column;
}
.how-header p, .how-header h2 {
    margin: 6px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px;
}

.how-item span {
    background: #000000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #fff;
    font-size: 20px;
}
img.single-icon {
    width: 110px;
}

/* ================================
   HOMEPAGE CATALOG SECTION
================================ */

.hp-catalog {
  padding: 80px 0;
  
}

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

.hp-catalog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}

.hp-left h2 {
  font-family: 'DM Sans';
  font-size: 48px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 15px;
}

.hp-left p {
  font-size: 18px;
  color: var(--muted);
}

.hp-right {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 14px;
  color: var(--muted);
	    margin-right: 50px;
}
.hp-small-card div {
    width: 170px;
}
.hp-badge {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.hp-main-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.hp-card {
  border-radius: 24px;
  padding: 40px;
  min-height: 200px;
  color: white;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	    background-size: cover !important;
}

.hp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.hp-card-content h3 {
  font-family: 'DM Sans';
  font-size: 26px;
  margin-bottom: 0px;
}

.hp-card-content p {
  font-size: 14px;
	    margin-top: 5px;
  margin-bottom: 20px;
  opacity: 0.9;
}

.hp-link {
  font-size: 13px;
  letter-spacing: 1px;
  text-decoration: none;
  color: white;
  font-weight: 600;
}

.hp-card-content {
    height: 200px;
    display: flex;
    align-items: stretch;
    flex-direction: column;
    justify-content: space-between;
}
a.hp-link {
    display: flex;
    gap: 15px;
    align-items: center;
}

a.hp-link svg {
    border: 1px solid #fff;
    border-radius: 30px;
}
.hp-small-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.hp-small-card svg {
    border: 1px solid currentColor;
    border-radius: 30px;
}
.hp-small-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-size: contain !important;
    background-position-x: 90% !important;
    background-repeat: no-repeat !important;
}
/* Background colors */

.hp-green { background: linear-gradient(135deg,#0f6c3c,#1ea463); }
.hp-brown { background: linear-gradient(135deg,#b97b50,#d7a076); }
.hp-blue  { background: linear-gradient(135deg,#3f6f8d,#6ea7cc); }

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

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

.hp-small-card {
  background: white;
  padding: 25px;
  border-radius: 20px;
     box-shadow: 0 0px 22px #c3c4c785;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 110px;
}

.hp-small-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.why-card h1 {
    font-size: 3rem;
    padding: 10px;
    background: #e2e6e0;
    width: 60px;
    height: 60px;
    text-align: center;
    border-radius: 50px;
    color: #7e7e7e;
}

.hp-small-card h4 {
  font-family: 'DM Sans';
  font-size: 18px;
  margin-bottom: 0px;
}

.hp-small-card p {
  font-size: 12px;
  color: var(--muted);
	margin-top: 5px;
}

.hp-small-card div {
    width: 170px;
}

/* ================================
   NAD+ VITALITY SECTION
================================ */

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

.hp-vitality-card {
  background: #e9e7e4;
  border-radius: 28px;
 
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
  overflow: hidden;
}

/* LEFT CONTENT */

.hp-vitality-content {
  flex: 1;
  max-width: 620px;
	 padding: 50px 50px;
}

.hp-vitality-content h2 {
  font-family: 'DM Sans';
  font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #1c1c1c;
}

.hp-vitality-sub {
  font-size: 16px;
  line-height: 1.7;
  color: #5c5c5c;
  margin-bottom: 30px;
}

/* LIST */

.hp-vitality-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px 0;
}

.hp-vitality-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 16px;
  color: #333;
}

/* CHECK ICON */

.hp-check {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #111;
  position: relative;
  flex-shrink: 0;
}

.hp-check::after {
  content: "✓";
  position: absolute;
  color: white;
  font-size: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* BUTTON */

.hp-vitality-btn {
  display: inline-block;
  background: #0f1716;
  color: white;
  padding: 16px 36px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: all 0.3s ease;
}

.hp-vitality-btn:hover {
  background: #000;
  transform: translateY(-2px);
}

/* RIGHT IMAGE */

.hp-vitality-image {
  flex: 1;
  display: flex;
     justify-content: center;
}

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

/* ================= RESPONSIVE ================= */

@media (max-width: 1200px) {

  .hp-vitality-card {
    padding: 60px;
  }

  .hp-vitality-content h2 {
    font-size: 36px;
  }

}

@media (max-width: 992px) {

  .hp-vitality-card {
    flex-direction: column;
    text-align: left;
    padding: 50px 30px;
  }

  .hp-vitality-image {
    justify-content: center;
    margin-top: 30px;
  }

  .hp-vitality-image img {
    max-height: 420px;
  }

}

@media (max-width: 600px) {

  .hp-vitality-content h2 {
    font-size: 28px;
  }

  .hp-vitality-btn {
    width: 100%;
    text-align: center;
  }

}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {

  .hp-catalog-header {
    flex-direction: column;
    gap: 30px;
  }

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

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

  .hp-left h2 {
    font-size: 32px;
  }

}

@media (max-width: 600px) {

  .hp-small-cards {
    grid-template-columns: 1fr;
  }

}
/* ===== PROGRAM GRID ===== */

/* ================= PROGRAM MAGAZINE GRID ================= */

.program-grid-section {
  padding: 60px 0;
}
.container.stats-intro.program-intro-blocks ul {
    width: max-content;
    text-align: left;
    margin: 0 auto;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ===== INTRO TEXT BLOCK ===== */

.program-intro-block {
  padding: 20px 10px;
}

.program-intro-block h2 {
  font-family: 'DM Sans';
  font-size: 32px;
  margin-bottom: 20px;
}

.program-intro-block p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.program-intro-block ul {
  list-style: none;
  padding: 0;
}

.program-intro-block li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 22px;
}

.program-intro-block li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #6f7d6c;
}

/* ===== PROGRAM IMAGE CARDS ===== */

.program-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  
}
.data-title {
    display: flex;    justify-content: space-between;
}

.program-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.program-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.55) 20%,
    rgba(0,0,0,0.15) 60%,
    rgba(0,0,0,0.05) 100%
  );
}

.program-card-content {
  position: absolute;
  bottom: 25px;
  left: 25px;
  right: 25px;
  color: #fff;
}

.program-card-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.program-card-content p {
  font-size: 14px;
  margin-bottom: 18px;
  line-height: 1.4;
}

/* Smaller white button */
.btn-white.small {
  background: #fff;
  color: #111;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
}

/* ===== CTA TEXT BLOCK ===== */

.program-cta-block {
  padding: 20px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.program-cta-block h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.program-cta-block p {
  margin-bottom: 20px;
  color: var(--muted);
}

.data-programs{
	    background: #fff;
    color: #111;
   
    border-radius: 30px;
    font-size: 13px;
    text-decoration: none;
   
}
@media (max-width: 992px) {
  .program-grid {
    grid-template-columns: 1fr;
  }
}

.hero-video.small
 {
    position: relative;
    height: 40vh;
    min-height: 500px;
    overflow: hidden;
    border-radius: 18px;
    margin: 10px 40px 0;
}

/* ================================
   MY ACCOUNT – CLEAN PROFESSIONAL
================================ */

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

/* Remove default floats */
/* .woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none !important;
  width: 100% !important;
} */

/* ================= SIDEBAR ================= */

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce-MyAccount-navigation li {
  margin-bottom: 18px;
}

.woocommerce-MyAccount-navigation a {
  text-decoration: none;
  font-size: 15px;
  color: #666;
  transition: all 0.2s ease;
}

.woocommerce-MyAccount-navigation .is-active a {
  color: #000;
  font-weight: 600;
}

.woocommerce-MyAccount-navigation a:hover {
  color: #000;
}

/* Vertical divider */
.woocommerce-MyAccount-navigation {
  border-right: 1px solid #eee;
  padding-right: 40px;
}

/* ================= CONTENT ================= */

.woocommerce-MyAccount-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.woocommerce-MyAccount-content a {
  color: #000;
  text-decoration: underline;
}

/* Remove ugly bullets in text */
.woocommerce-MyAccount-content ul {
  list-style: none;
  padding: 0;
}

/* ================= SMALL BANNER ================= */

.small-banner {
  padding: 30px 0;
}

.small-banner-inner {
  position: relative;

  border-radius: 22px;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: center;
}

.small-banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  inset: 0;
  z-index: 1;
}

.small-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.35) 40%,
    rgba(0,0,0,0.1) 100%
  );
  z-index: 2;
}

.small-banner-content {
    position: relative;
    z-index: 3;
    color: #fff;
    max-width: 520px;
    margin: unset;
}

.small-banner-content h2 {
  font-family: 'DM Sans';
  font-size: 42px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
}

.small-banner-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
  opacity: 0.95;
}

.small-banner-btn {
  border-radius: 40px;
  padding: 14px 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.small-banner-btn .arrow {
  font-size: 18px;
}
/* ================= TABLES ================= */

.woocommerce table.shop_table {
  border: none;
  border-collapse: collapse;
}

.woocommerce table.shop_table th {
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid #eee;
}

.woocommerce table.shop_table td {
  padding: 16px 0;
  border-bottom: 1px solid #f2f2f2;
}
.woocommerce-account .woocommerce-MyAccount-content {
    float: right;
    width: 80%;
    padding: 0 30px;
}
.woocommerce-account .woocommerce-MyAccount-navigation {
    float: left;
    width: 20%;
}
.woocommerce-account header.page-header {
    display: none;
}
/* ================= BUTTONS ================= */

.woocommerce .button {
  background: #111 !important;
  color: #fff !important;
  border-radius: 30px !important;
  padding: 10px 24px !important;
  font-size: 14px !important;
  border: none !important;
}

.woocommerce .button:hover {
  background: #333 !important;
}

/* ================= MOBILE ================= */

@media (max-width: 992px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .woocommerce-MyAccount-navigation {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
  }
}


/* ================= SMALL BANNER MOBILE ================= */

@media (max-width: 992px) {

  .small-banner-inner {
    margin: 20px;
    height: auto;
    padding: 60px 20px;
  }

  .small-banner-content {
    max-width: 100%;
  }

  .small-banner-content h2 {
    font-size: 28px;
  }

  .small-banner-content p {
    font-size: 14px;
  }

}

/* =========================
   NAV MENU — black link color
========================= */
.nav-menu .menu-item a,
.nav-menu .menu-item a:visited {
    color: #000000 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
}
.nav-menu .menu-item a:hover {
    color: #12a96e !important;
}





/* ================= SPLIT-SCREEN SECTION ================= */
.split-screen {
    display: flex;
    gap: 20px;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 30px 20px;
    height: auto;
}

.split-left,
.split-right {
    position: relative;
    flex: 1;
    border-radius: 22px;
    overflow: hidden;
    min-height: 500px;
}

.split-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
    border-radius: 22px;
}

.split-overlay-light {
    background: rgba(0, 0, 0, 0.15);
}

.split-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 2;
    color: #fff;
    padding: 45px 40px;
    max-width: 440px;
}

.split-content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 14px;
}

.split-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 24px;
}

.split-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 18px;
    color: #fff;
}

.split-content-right {
    left: auto;
    right: 0;
    padding: 45px 40px;
    text-align: left;
}

.btn.btn-dark {
    display: inline-block;
    background: #1a1a1a;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
    border: none;
}

.btn.btn-dark:hover {
    background: #333;
}

/* Split-screen mobile */
@media (max-width: 768px) {
    .split-screen {
        flex-direction: column;
        padding: 20px 15px;
        gap: 15px;
    }

    .split-left,
    .split-right {
        min-height: 380px;
    }

    .split-content {
        padding: 35px 28px;
    }

    .split-content h3 {
        font-size: 24px;
    }

    .split-content-right {
        padding: 35px 28px;
    }
}

/* Adjust featured-products after split-screen */
.split-screen + .featured-products {
    padding-top: 30px;
}

.featured-grid.bottom-row {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
    .featured-grid.bottom-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-grid.bottom-row {
        grid-template-columns: 1fr;
    }
}


/* ================= HOMEPAGE SHOP CARDS ================= */
.featured-products .shop-card {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: #f5f5f5;
    border-radius: 18px;
    overflow: hidden;
    transition: transform 0.2s ease;
}
.featured-products .shop-card:hover {
    transform: translateY(-3px);
}
.featured-products .shop-card-img-zone {
    position: relative;
    background: #f5f5f5;
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.featured-products .shop-card-img-zone img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.featured-products .shop-card-img-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.featured-products .shop-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    z-index: 2;
}
.featured-products .badge-cat {
    background: #1a1a1a;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: 0.2px;
    white-space: nowrap;
}
.featured-products .badge-ruo {
    background: rgba(255,255,255,0.85);
    color: #333;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 30px;
    letter-spacing: 0.2px;
    white-space: nowrap;
    border: 1px solid rgba(0,0,0,0.08);
}
.featured-products .shop-card-content {
    padding: 14px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}
.featured-products .shop-card-title {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px 0;
    line-height: 1.2;
    color: #0d1b2e;
}
.featured-products .shop-card-title a {
    text-decoration: none;
    color: inherit;
}
.featured-products .shop-card-title a:hover {
    color: #12a96e;
}
.featured-products .shop-card-price {
    font-size: 13px;
    font-weight: 600;
    color: #12a96e;
    margin: 0 0 12px 0;
}
.featured-products .shop-card-desc {
    font-size: 13px;
    color: #666;
    margin: 0 0 12px 0;
    line-height: 1.5;
}
.featured-products .shop-card-disclaimer {
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 0;
}
.featured-products .shop-card-disclaimer a {
    color: #888;
    text-decoration: underline;
}
.featured-products .shop-card-disclaimer a:hover {
    color: #333;
}
.featured-products .shop-card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
}
.featured-products .btn-view-product {
    flex: 1;
    background: #000000;
    color: #fff;
    text-align: center;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    padding: 11px 14px;
    text-decoration: none;
    transition: background 0.15s;
    white-space: nowrap;
}
.featured-products .btn-view-product:hover {
    background: #12a96e;
    color: #fff;
}
.featured-products .btn-learn {
    flex: 1;
    background: transparent;
    color: #0d1b2e;
    text-align: center;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    padding: 11px 14px;
    text-decoration: none;
    border: 1.5px solid #ccc;
    transition: border-color 0.15s, color 0.15s;
    white-space: nowrap;
}
.featured-products .btn-learn:hover {
    border-color: #0d1b2e;
    color: #0d1b2e;
}


/* ================= HEADER GET STARTED BUTTON ================= */
.desktop-header-links {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-get-started {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.btn-get-started:hover {
    background: #333;
    color: #fff;
}

.header-login-link {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    text-decoration: none;
    padding: 10px 16px;
    transition: color 0.2s ease;
}

.header-login-link:hover {
    color: #555;
}

.header-cart-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.header-cart-icon:hover {
    opacity: 0.6;
}

.header-cart-icon svg {
    width: 22px;
    height: 22px;
}
