/* --- VARIABLES & RESET --- */
:root {
    --primary-orange: #F94C1B;
    --dark-orange: #e64a19;
    --btn-red: #d32f2f;
    --bg-cream: #FFFEF2;
    --text-dark: #333;
    --font-oswald: 'Oswald', sans-serif;
    --font-poppins: 'Poppins', sans-serif;
}
html {
  scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-poppins);
    background-color: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
}

ul { list-style: none; }
a { text-decoration: none; }

/* --- HERO SECTION --- */
.hero-section {
    /* background: linear-gradient( #ff7043, #d32f2f); */
    position: relative;
    /* min-height: 100vh;
    padding-bottom: 100px; */
    background-size: contain;
    overflow: hidden;
    bottom: 155px;
    z-index: 1;
}
.hero-banner img{
      top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
     transition: 0.3s;
     overflow: hidden;
     z-index: 0;

}
/* Background Pattern */
.navbar {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 1400px;
    background: rgba(255,255,255,0.85);
    padding: 8px 30px;
    border-radius: 50px;
    display: flex;
    margin-bottom: 100px;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.nav-links.left, .nav-links.right {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1; 
}
.nav-links.right { justify-content: flex-end; }

.nav-links a {
    color: #444;
    font-weight: 700;
    font-size: 13px;
    margin: 0 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--primary-orange); }

.nav-links.left {
  gap: 25px;
}
/* Logo hanging adjustment */
.nav-logo-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.main-logo { height: 75px; }

.btn-buy-nav {
    background-color: var(--btn-red);
    color: white !important;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}
.btn-buy-nav:hover{
  transform: translateY(-3px);background: url(assets/everygi.png)no-repeat center right / cover; color: #fff ; background-color: #D70F14; transition: 0.3s;
}
.lang-selector {
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #333;
    margin-left: 15px;
}


/* Wrapper */
.products-dropdown {
  position: relative;
}

/* Toggle (SMALL + CLEAN) */
.dropdown-toggle {
  padding: 8px 15px;
  font-weight: 700;
  font-size: 14px;
  color:#444;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

/* Arrow */
.arrow {
  font-size: 12px;
  transition: transform 0.35s ease;
}

/* Rotate Arrow */
.products-dropdown.open .arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 45px;
  left: 0;
  width: 260px;
  background: #fffffff2;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  
  opacity: 0;
  transform: translateY(15px) scale(0.95);
  pointer-events: none;
  transition: all 0.35s cubic-bezier(.17,.67,.83,.67);
}

/* Show */
.products-dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

/* Items */
.dropdown-item {
  display: block;
  padding: 12px;
  margin-bottom: 12px;
  border-radius: 15px;
  background: #FEEDE8;
  text-align: center;
  font-weight: 700;
  letter-spacing: 1px;
  color: #5a4c48;
  text-decoration: none;
  transition: 0.3s ease;
  border: 6px solid #fff8f4;
}

/* Active */
.dropdown-item.active {
  background: #ff4a17;
  color: white;
  /* box-shadow: 0 8px 18px rgba(255,74,23,0.35); */
}
.dropdown-item.active:hover{
  color: white;
}
/* Hover */
.dropdown-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.08);
  border: none;
  transition: 0.5ms ease-in-out;
}

/* --- HERO CONTENT --- */
.hero-content {
    text-align: center;
    margin-top: 150px; /* Increased margin to clear fixed navbar */
    color: white;
    /* position: relative; */
    z-index: 5;
}

.hero-content-heading {
    font-family: var(--font-oswald);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 40px;
    padding-top: 130px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
/* .hero-content-heading h1{
    margin-top:150px;
} */
.hero-buttons { margin-bottom: 10px; }

.btn-white {
    background: white;
    color: var(--text-dark);
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    margin: 0 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: transform 0.2s;
}
.btn-white:hover { transform: translateY(-3px);background: url(assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14;transition: 0.3s;}

.hero-products img {
    max-width: 1000px;
    width: 90%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: 1px solid white;
}
.dot.active { background: white; }
.red .dot { border-color: #ccc; background: #ccc; }
.red .dot.active { background: var(--primary-orange); border-color: var(--primary-orange); }


/* --- SHOP SECTION --- */


/* Button overlay */

.shop
/* =========================
   SHOP SECTION (CLEAN)
========================= */


.highlight {
  color: var(--primary-orange);
}

/* Horizontal Scroll Container */
.slides {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.slides::-webkit-scrollbar {
  display: none;
}

/* Track */
.slider-track {
  display: flex;
  gap: 30px;
}

/* Each Card */
.card {
  flex: 0 0 48%;   /* exactly 2 cards visible */
  position: relative;
}

/* Image */
.card img {
  width: 100%;
  height: auto;
  border-radius: 25px;
  display: block;
}

/* Button overlay */
.shop-btn {
  position: absolute;
  bottom: 30px;
  left: 45px;
  width: 180px;
  height: 50px;
  border-radius: 30px;
  border: none;
  background: white;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
}

.shop-btn:hover {
  transform: translateY(-3px);background: url(assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14;transition: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {
  .card {
    flex: 0 0 90%;
  }
}

/* Dots */
.dots {
  margin-top: 30px;
  text-align: center;
}

.dots span {
  width: 12px;
  height: 12px;
  background: #ccc;
  display: inline-block;
  border-radius: 50%;
  margin: 0 6px;
  cursor: pointer;
}

.dots .active {
  background: #ff5722;
}


.highlight { color: var(--primary-orange); }

.tabs-container { margin-bottom: 50px; }
.tab-pill {
    background: transparent;
    border: 1px solid #FFCC04;
    padding: 12px 35px;
    margin: 0 5px;
    border-radius: 30px;
    font-family: var(--font-poppins);
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: 0.3s;
}
.tab-pill.active, .tab-pill:hover {
    background: var(--primary-orange);
    color: white;
    border-color: var(--primary-orange);
    
}

/* --- SHOP GRID (Full Width) --- */
.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    width: 96%;
    max-width: 1700px;
    margin: 0 auto;
}

.shop-card {
    border-radius: 30px;
    overflow: visible;
    position: relative;
    height: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: left;
    transition: transform 0.3s;
}
.shop-card:hover { transform: translateY(-5px); }

/* Left Card: Glucose */

.card-text-content {
    position: relative;
    z-index: 2;
    padding: 70px 50px;
    width: 55%;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.card-text-content h3 {
    font-family: var(--font-oswald);
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 20px;
}
.sub-head { font-weight: 600; margin-bottom: 15px; font-size: 1rem; }

/* Right Card: Activon Split */
.activon-card { display: flex; flex-direction: column; }
.activon-top {
    height: 55%;
    width: 100%;
    background: linear-gradient(to bottom right, #ffffff 30%, #fff3e0 100%);
    border-radius: 30px 30px 0 0;
    padding: 70px 50px;
}
.activon-top h3 {
    font-family: var(--font-oswald);
    font-size: 3rem;
    color: #333;
}
.activon-bottom {
    height: 45%;
    width: 100%;
    background: #ff9100;
    border-radius: 0 0 30px 30px;
    padding: 30px 50px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Bullet Points */
.benefit-bullets li {
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: start;
}
.benefit-bullets li::before {
    content: '\f0e7';
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 12px;
    font-size: 12px;
    margin-top: 4px;
}

.btn-shop {
    display: inline-block;
    background: white;
    color: #333;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}
.discover-btn{
    /* display: inline-block; */
    background: #D70F14;
    color: #fff;
    padding: 12px 40px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    margin-top: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    border: none;
}
.discover-btn:hover{
  transform: translateY(-3px);background: url(assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14; transition: 0.3s;
}

/* SHOP SECTION */
.shop-section {
    padding: 80px 80px 2%;
    text-align: center;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: 45px;
  margin-bottom: 40px;
  color: #3b332b;
  font-weight: 500;
}

.section-title span {
  color: #ff4d00;
}

.tabs-container {
    margin-bottom: 50px;
}

/* CAROUSEL */
.shop-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 95%;
    max-width: 1600px;
    margin: auto;
}

.shop-carousel-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

.shop-card {
    min-width: 48%;
    height: 400px;
    border-radius: 25px;
    color: white;
    display: flex;
    align-items: center;
    padding: 40px;
    flex-shrink: 0;
}

/* Button */
.btn-shop {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 30px;
    background: white;
    color: black;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
}

/* Arrows */
.shop-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    font-size: 22px;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 10;
}

.shop-arrow.left { left: -10px; }
.shop-arrow.right { right: -10px; }

/* Responsive */
@media (max-width: 992px) {
    .shop-card {
        min-width: 100%;
    }
}
/* .shop-section {
    padding: 80px 5%;
    text-align: center;
} */

/* HIDE RADIO */
input[type="radio"] {
    display: none;
}

/* WRAPPER */
.shop-carousel-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    position: relative;
}

/* TRACK */
.shop-carousel-track {
    display: flex;
    width: 300%;
    transition: transform 0.6s ease;
}

/* CARDS */
.shop-card {
    width: 100%;
    flex-shrink: 0;
    height: 350px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

/* SLIDE MOVEMENT */
#slide1:checked ~ .shop-carousel-track {
    transform: translateX(0%);
}

#slide2:checked ~ .shop-carousel-track {
    transform: translateX(-100%);
}

#slide3:checked ~ .shop-carousel-track {
    transform: translateX(-200%);
}

/* DOTS */
.carousel-dots {
    margin-top: 25px;
}

.carousel-dots label {
    width: 14px;
    height: 14px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 6px;
    cursor: pointer;
    transition: 0.3s;
}

/* Active Dot */
#slide1:checked ~ .carousel-dots label:nth-child(1),
#slide2:checked ~ .carousel-dots label:nth-child(2),
#slide3:checked ~ .carousel-dots label:nth-child(3) {
    background: #ff5722;
}
/* Floating Packs */
.floating-pack {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 10;
    transform: rotate(-5deg);
    filter: drop-shadow(-10px 15px 25px rgba(0,0,0,0.35));
    transition: transform 0.3s;
}
.pack-left { width: 260px; }
.pack-right { width: 240px; }
.floating-pack:hover { transform: rotate(0deg) scale(1.05); }

.discover-container { margin-top: 60px; }

/* --- EXPERIENCES (Up-Down-Up-Down) --- */
.experience-section {
    padding: 80px 2%;
    background: var(--bg-cream);
    text-align: center;
}
.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 96%;
    max-width: 1700px;
    margin: 0 auto 60px auto;
    align-items: start;
}
.video-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}
.video-card:hover { transform:  translateY(0) scale(1.02); }
.video-card img { width: 100%; height: 100%; object-fit: cover; }
.play-icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 65px; height: 65px;
    background: white;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    color: var(--primary-orange);
    font-size: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
/* Stagger Logic: 1 UP, 2 DOWN, 3 UP, 4 DOWN */
.pos-up { margin-top: 0; }
.pos-up:hover{
    transform: scale(1.2);
}
.pos-down { margin-top: 70px; }
/* Hover only inner */
.video-inner {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 9/16;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.video-card:hover .video-inner {
  transform: scale(1.08);
}
/* --- BLOG --- */
.blog-section { padding: 60px 2%; }
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 96%;
    max-width: 1700px;
    margin: 0 auto 40px auto;
}
.section-title.text-left { margin-bottom: 0; }
.btn-read-all {
    background: var(--btn-red);
    color: white;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
}
.btn-read-all:hover{
  transform: translateY(-3px);background: url(assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14; transition: 0.3s;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 96%;
    max-width: 1700px;
    margin: 0 auto 40px auto;
}
.blog-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 20px;
    margin-bottom: 20px;
}
.blog-card h4 {
    font-family: var(--font-head);
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
    margin-bottom: 15px;
}
.read-more {
    color: var(--btn-red);
    font-weight: 700;
    font-size: 13px;
}

/* --- FAQ --- */
.faq-section { padding: 80px 5%; text-align: center; }
/* Matches Subscribe width */
.faq-accordion {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
    text-align: left;
}
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    transition: 0.3s;
}
.faq-head {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.faq-head h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #444;
}
.faq-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    font-size: 1rem;
    line-height: 1.6;
    transition: 0.4s;
}

.faq-item.active {
    background: var(--primary-orange);
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 20px rgba(255,87,34,0.3);
}
.faq-item.active h3, .faq-item.active i, .faq-item.active p { color: white; }
.faq-item.active .faq-body { max-height: 200px; padding-bottom: 25px; }
.faq-item.active i { transform: rotate(180deg); }

/* --- SUBSCRIBE --- */
.subscribe-section { padding: 50px 2% 140px 2%; display: flex; justify-content: center; }
.subscribe-card {
    background: linear-gradient(90deg, #ff7043, #d32f2f);
    width: 96%;
    height: 30%;
    max-width: 1600px;
    border-radius: 30px;
    padding: 4%;
    position: relative;
    display: flex;
}
/* Chevron Background */
.subscribe-card::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0; width: 40%;
    border-radius: 0 30px 30px 0;
    background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0, rgba(255,255,255,0.05) 40px, transparent 40px, transparent 80px);
    pointer-events: none;
}
.sub-text { width: 50%; position: relative; z-index: 2; color: white; }
.sub-text h2 {
    font-family: var(--font-head);
    font-size: 2.5rem;
    margin-bottom: 30px;
}
.sub-text form { display: flex; flex-direction: column; gap: 20px; }
.sub-text label { font-size: 13px; margin-bottom: 5px; opacity: 0.9; display: block; }
.sub-text input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.5);
    padding: 10px 0;
    color: white;
    outline: none;
}
.form-row { display: flex; gap: 30px; }
.form-group.full { width: 100%; }
.form-group { flex: 1; }
.btn-submit {
    background: white;
    color: #333;
    padding: 15px 50px;
    border-radius: 30px;
    font-weight: 700;
    border: none;
    width: fit-content;
    margin-top: 20px;
    cursor: pointer;
}
.btn-submit:hover{
  transform: translateY(-3px);background: url(assets/everygi.png)no-repeat center right / cover; color: #fff; background-color: #D70F14; transition: 0.3s;
}
/* Runner Image popping out */
.sub-image {
    height: 600px;
    position: absolute;
    right: 80px;
    bottom: 30px;
    width: 690px;
    z-index: 5;
}
.sub-image img { width: 100%; display: block; }

/* --- FOOTER --- */
footer { padding-top: 60px; }
.footer-top {
    display: flex;
    justify-content: space-between;
    width: 96%;
    max-width: 1700px;
    margin: 0 auto 50px auto;
    padding: 0 2%;
}
.footer-col.left { flex: 1; display: flex; gap: 15px; color: #555; font-size: 14px; line-height: 1.5; }
.footer-col.left i { color: #e91e63; font-size: 22px; }
.footer-col.center { flex: 1; text-align: center;}
.footer-col.center img{
    height: 102px;
}
.footer-col.right { flex: 1; display: flex; justify-content: flex-end; gap: 30px; font-weight: 700; font-size: 14px; }
.footer-col.right a { color: #333; }
.footer-bottom {
    margin: 10px;
    background: var(--primary-orange);
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    border-radius: 50px;
}
.socials a { color: white; margin: 0 10px; font-size: 18px; }

.whatsapp-float {
    position: fixed;
    bottom: 30px; right: 30px;
    background: #00c853;
    color: white;
    width: 60px; height: 60px;
    border-radius: 50%;
    display: flex; justify-content: center; align-items: center;
    font-size: 32px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    z-index: 100;
}

/* --- RESPONSIVE MEDIA QUERIES --- */
@media (max-width: 900px) {
    .navbar {
        width: 90%;
        padding: 15px 20px;
        flex-direction: column;
        height: auto;
    }
    .nav-left, .nav-right { display: none; }
    
    .shop-grid, .experience-grid, .blog-grid { grid-template-columns: 1fr; }
    .experience-grid { grid-template-columns: 1fr 1fr; }
    
    .video-card.pos-down { margin-top: 0; }
    
    .activon-upper, .activon-lower { height: auto; }
    .activon-lower { padding-bottom: 60px; }
    
    .subscribe-card { flex-direction: column; overflow: hidden; padding-bottom: 0; }
    .sub-text { width: 100%; margin-bottom: 20px; }
    .sub-image { position: relative; right: 0; bottom: 0; width: 80%; margin: 0 auto; }
    
    .footer-top { flex-direction: column; text-align: center; gap: 30px; }
    .footer-col.right { justify-content: center; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}

/* ===============================
   SCROLL REVEAL BASE
================================ */

.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Left Slide */
.reveal-left {
  opacity: 0;
  transform: translateX(-680px);
  transition: all 1s ease;
}

.reveal-left.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1s ease;

}

/* Right Slide */
.reveal-right {
  opacity: 0;
  transform: translateX(550px);
  transition: all 0.8s ease;
}

.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
  transition: all 1.5s ease;

}

/* EXPERIENCE CARD ANIMATION */

.video-card {
  opacity: 0;
  transform: translateY(100px);
  transition: all 0.8s ease;
}

.video-card.show {
  opacity: 1;
  transform: translateY(0);
}