:root {
  --bg: #f6f4ef;
  --text: #535353;
  --muted: #6b6b6b;
  --primary: #5c6f5b;
  --white: #ffffff;
  --radius: 16px;
  --container: 100%;
}

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;
}
.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: 50px;
  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: 14px 28px;
  border-radius: var(--radius);
  text-decoration: none;
  display: inline-block;
}

.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;
}

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

#hp-dynamic-text {
    display: block;
    transform: translateY(100%);
    opacity: 0;
	color:#5c6f5b
}
h2.hp-animated-title {
    display: flex;
    gap: 10px;
}
.hp-static {
    display: block;
    margin-left: 15%;
}
/* ====== 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: 14px 30px;
  border-radius: 30px;
}


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

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

.programs-header {
  max-width: 800px;
  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;
  justify-content: space-between;
  align-items: center;
}

/* Style WooCommerce Add to Cart */

.product-actions .button {
background: #fff !important;
    border-radius: 30px !important;
    padding: 10px 22px !important;
    font-size: 16px !important;
    border: none !important;
    text-decoration: none;
    color: #000;
    box-shadow: 0 8px 16px rgb(0 0 0 / 22%);
}

.product-actions .button:hover {
  background: #e9e9e9 !important;
}

.link {
    font-size: 14px;
    text-decoration: none;
    color: #111;
    background: #5c6f5b !important;
    border-radius: 30px !important;
    padding: 10px 22px !important;
    font-size: 16px !important;
    border: none !important;
    text-decoration: none;
    color: #ffffff;
    box-shadow: 0 8px 16px rgb(0 0 0 / 22%);
}

.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: #5c6f5b;
    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;
}
/* ===== 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;
}

/* ================= 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;
  }
}


