* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Oswald', sans-serif;
}

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

body {
    /* background: linear-gradient(90deg, #ff4d14 0%, #ffb633 100%); */
    background-color: #FFFEF2;
    min-height: 200vh;
}
.header-container {
    margin-top: 15px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 18px;
     transition: all 0.4s ease;
}
/* Hidden state */
#header-container.hide {
  
  opacity: 0;
  transform:  translateY(-50%) ;
}

/* Visible state */
#header-container.show {
  
  opacity: 1;
  transform: translateY(0%) ;
}

.navbar {
    position: relative;
    max-width: 1220px;
    margin: 0 auto;
    height: 52px;
    border-radius: 999px;
    /* background: linear-gradient(90deg, #ecd4cb 0%, #f3eddc 100%); */
    background: rgba(255, 255, 255, .8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px 0 26px;
    /* box-shadow: 0 4px 6px rgba(0,0,0,0.05); */
}

/* Equal Space Alignment for Desktop */
.nav-left,
.nav-right {
    display: flex;
    align-items: center;
    flex: 1; /* Both sides take up equal space */
}

    .nav-left {
        justify-content: flex-start;
        gap: 120px; /* Adjust this to change spacing between Home & Products */
        
}

.nav-right {
    justify-content: flex-end;
    gap: 120px; /* Adjust this to change spacing between Contact & Buy Now */
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 200px; /* Equal gap applied */
}

.nav-menu a {
    text-decoration: none;
    color: #4f4946;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.45px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-menu a:hover, 
.dropdown:hover > a {
    color: #ce0018;
}

/* Arrows */
.arrow {
    border: solid currentColor;
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 2.5px;
    margin-left: 7px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}

.arrow.down {
    transform: rotate(45deg);
}

.arrow-light {
    border-color: #fff;
}

.dropdown:hover .arrow.down {
    transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown Styling */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px); 
    left: -20px;
    background-color: #fdf6f3;
    list-style: none;
    padding: 10px;
    border-radius: 10px;
    min-width: 180px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.dropdown-menu.align-right {
    left: auto;
    right: 0;
    min-width: 220px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin-bottom: 5px;
}

.dropdown-menu li:last-child {
    margin-bottom: 0;
}

.dropdown-menu a {
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 11px;
    color: #4f4946;
    display: block;
    transition: all 0.2s ease;
    text-decoration: none;
}

.dropdown-menu a:hover, 
.dropdown-menu a.active-item {
    background-color: #F94C1B; 
    color: #ffffff;
}

/* Center Logo */
.nav-center {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -40%);
    z-index: 12;
}

.logo {
    height: 112px; /* Desktop pop-up size */
    width: auto;
    display: block;
}

/* Buy Now Button */
.buy-now-btn {
    border: none;
    border-radius: 999px;
    background: #D70F14;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.35px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    padding: 12px 17px;
    cursor: pointer;
    line-height: 1;
    transition: background-color 0.2s ease;
    white-space: nowrap;
}

.buy-dropdown:hover .buy-now-btn {
    background: #aa0014;
}

/* White Button with Hover Animation */
.btn-white {
    background: white;
    color: #333;
    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;
    border: none;
    cursor: pointer;
}

.btn-white:hover {
    transform: translateY(-3px);
    background-image: url(./assets/everygi.png);
    background-repeat: no-repeat;
    background-position: center right;
    background-size: cover;
    background-color: #D70F14;
    color: #fff;
    transition: 0.3s;
}

/* --- Mobile Menu & Responsive Styling --- */
.hamburger {
    display: none;
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: #D70F14;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background-color: #fdf6f3;
    box-shadow: 2px 0 15px rgba(0,0,0,0.1);
    z-index: 999;
    padding-top: 80px;
    transition: left 0.4s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-nav-list {
    list-style: none;
    padding: 0 25px;
}

.mobile-nav-list > li {
    border-bottom: 1px solid #ebd8d0;
}

.mobile-nav-list > li > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    text-decoration: none;
    color: #4f4946;
    font-size: 14px;
    font-weight: 700;
}

.mobile-dropdown-menu {
    list-style: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-dropdown-trigger.active .mobile-dropdown-menu {
    max-height: 250px; 
    margin-bottom: 15px;
}

.mobile-dropdown-trigger.active > a .arrow.down {
    transform: rotate(-135deg);
}

.mobile-dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #4f4946;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
}

.mobile-dropdown-menu a.active-item,
.mobile-dropdown-menu a:hover {
    background-color: #f05a28;
    color: white;
}

/* Mobile Media Queries */
@media (max-width: 900px) {
    .desktop-nav-links {
        display: none !important; /* Hide standard links */
    }
    
    .hamburger {
        display: flex;
    }

    /* Resize & realign elements for mobile */
    .navbar {
        padding: 0 6px 0 15px; /* Tighter padding for mobile */
    }
    
    .nav-left {
        flex: 0; /* Shrink to fit just the hamburger */
        gap: 0;
    }

    .nav-right {
        flex: 0; /* Shrink to fit just the buy button */
        gap: 0;
    }
    
    /* Keep logo absolute centered but slightly smaller */
    .logo {
        height: 91px;
        width: auto;
    }

    /* Shrink the Buy button slightly so it fits nicely on small phones */
    .buy-now-btn {
        font-size: 11px;
        padding: 10px 14px;
    }
}
/* =============================
   WHY SECTION
============================= */
.why-glucond {
    padding: 60px 5%;
    background: #FFFEF2;
    font-family: 'Poppins', sans-serif;
}

.why-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.why-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.rounded-img {
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    object-fit: contain;
}

.why-content {
    flex: 1;
}

.section-title-why {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #493E34;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.title-img-span {
    display: inline-flex;
    align-items: center;
}

.title-img-span img {
    height: 40px;
    margin-top: -6px;
}

.why-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #493E34;
    margin-bottom: 25px;
    font-weight: 400;
}

.desktop-break {
    display: block;
}

.mobile-title {
    display: none;
}

@media (max-width: 900px) {
    .why-glucond {
        padding: 90px 20px;
    }

    .why-container {
        flex-direction: column;
        gap: 30px;
    }

    .why-image {
        justify-content: center;
    }

    .rounded-img {
        max-width: 100%;
    }

    .mobile-title {
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
        font-size: 36px;
    }

    .desktop-title {
        display: none;
    }

    .why-content p {
        text-align: center;
        margin-bottom: 20px;
    }

    .desktop-break {
        display: none;
    }
}

@media (max-width: 900px) {
    .header-container {
        padding: 8px 10px 0;
    }

    .navbar {
        height: 50px;
        padding: 0 10px;
    }

    .nav-left,
    .nav-right {
        flex: 1;
    }

    .nav-left {
        justify-content: flex-start;
    }

    .nav-right {
        justify-content: flex-end;
        gap: 0;
    }

    .nav-menu {
        display: none;
    }

    .buy-now-btn {
        display: inline-flex;
        font-size: 11px;
        padding: 10px 14px;
    }

    .hamburger {
        display: flex;
        padding: 8px 10px;
        gap: 6px;
    }

    .hamburger span {
        width: 28px;
    }

    .nav-center {
        top: 0;
        transform: translate(-50%, -38%);
    }

    .logo {
        height: 91px;
        width: auto;
        margin-top: 30px;
    }

    .hero {
        padding-top: 56px;
        background-position: center -10px;
    }
}



/* ________________hero_______________ */

.hero {
    width: 100%;
    min-height: 520px;
    margin-top: 0;
    position: relative;
    /* border: 2px solid #d14c17; */
    padding-top: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('./assets/hero_bg.png') center/cover no-repeat;
    overflow-x: hidden;

}

.hero-left {
  
  flex-direction: column;
  gap: 15px;
}

.hero-logo-text {
  width: 220px;
}

.immunovolt-text {
  width: 200px;
}

/* RIGHT SIDE TEXT */
.hero-right {
  max-width: 500px;
}

.hero-sun-wrapper {
    position: absolute;
    right: 8%;
    top: 15%;
    width: 200px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-glow {
    position: absolute;
    width: 300%;
    height: 300%;
    top: -100%;
    left: -100%;
    object-fit: contain;
    z-index: 1;
    animation: rotateGlow 10s linear infinite;
}

.hero-sun {
    position: relative;
    width: 100%;
    object-fit: contain;
    z-index: 2;
}

.hero-boxes {
    position: absolute;
    /* bottom: -0px; */
     bottom: 20px;
    right: 15%;
    width: 32%;
    max-width: 650px;
    height: auto;
    object-fit: contain;
    z-index: 3;
}

@keyframes rotateGlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(0deg);
    }
}

.hero-content {
    position: absolute;
    left: 15%;
    top: 42%;
    transform: translateY(-50%);
    z-index: 5;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;

}

.hero-logo-text {
    height: 55px;
    margin-bottom: 0px;
}

.hero-heading {
    color: #fff;
    font-size: 24px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 30px;
    max-width: 345px;
    /* text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2); */
    font-family: 'Oswald', sans-serif;
}

.benefits-container {
    display: flex;
    align-items: center;
    gap: 30px;
}

.benefit-badge {
    height: 130px;
}

@media (min-width: 901px) {
    .benefit-badge {
        margin-left: 12px;
    }
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: 'oswald', sans-serif !important;
    display: flex;
    align-items: center;
    gap: 12px;
}
.benefits-list li img{
    margin-right:15px;
}

.mock-icon {
    font-size: 16px;
    background: #f76602;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 900px) {
    .hero {
        min-height: 600px;
    }

    .hero-boxes {
        bottom: 0px !important;
        width: 65%;
    }

    .hero-sun-wrapper {
        right: 5%;
        top: 16% !important;
        width: 140px;
        height: 140px;
    }

    .hero-content {
        left: 5%;
    }
}

@media (min-width: 481px) and (max-width: 900px) {
    .hero-content {
        top: 39%;
        left: 4%;
        width: 48%;
        gap: 8px;
    }

    .hero-logo-text {
        height: 48px;
        margin-bottom: -3px;
    }

    .hero-heading {
        font-size: 20px;
        max-width: 250px;
        line-height: 1.12;
        margin-bottom: 0;
    }
}

@media (max-width: 820px) {
    .hero {
        min-height: 600px;
    }
}


@media (min-width: 768px) and (max-width: 790px) {

     .hero-boxes {
        width: 64%;
    bottom: 13px !important;
    left: 33%;
    transform: translateX(-50%);
    right: auto;
        
    }
}

@media (min-width: 1152px) and (max-width: 1170px) {
.hero-boxes {
        width: 45%;
    bottom: -72px !important;
    left: 52%;
    transform: translateX(-50%);
    right: auto;
        
    }

}
@media (min-width: 734px) and (max-width: 760px) {
.hero-boxes {
     width: 63%;
    bottom: -72px !important;
    left: 35%;
    transform: translateX(-50%);
    right: auto;
        
    }

}
@media (min-width: 900px) and (max-width: 950px) {
.hero-boxes {
    width: 52%;
    bottom: -72px !important;
    left: 44%;
    transform: translateX(-50%);
    right: auto;
        
    }

}
@media (max-width: 480px) {
    .hero {
        /* height: ; */
        overflow-y: hidden;
        min-height: 600px !important;
        background: url('./assets/hero_bg.png') 21% top / cover no-repeat;
    }
    .title-img-span img {
    height: auto;
    width: 120px; ;
    margin-top: -6px;
}


    .hero-boxes {
        width: 100%;
        bottom: -30px !important;
        left: -4%;
        transform: translateX(-50%);
        right: auto;
    }

    .hero-content {
        left: 4%;
        gap: 0;
        top: 34%;
        transform: translateY(-50%);
        align-items: flex-start;
        width: 92%;
        padding: 0;
        display: grid;
        grid-template-columns: minmax(70%, 30%) 1fr;
        grid-template-areas:
            "logo1 heading"
            "logo2 heading";
        column-gap: 10px;
        row-gap: 4px;
        align-items: start;
    }
.immunovolt-text{
   /* margin-top: -50px !important;*/
}
    .hero-logo-text {
        height: auto;
       /* width: 220px !important;*/
        margin-bottom: 0;
    }

    .hero-content .hero-logo-text:first-of-type {
        grid-area: logo1;
        /*max-width: 130px;*/
    }

    .hero-content .hero-logo-text:nth-of-type(2) {
        grid-area: logo2;
       /* max-width: 146px;*/
    }
    /* .logo{
        height: 91px !important;
    } */

    .hero-heading {
        grid-area: heading;
        font-size: 18px;
        text-align: left;
                font-size: 22px !important;

        margin: 0;
        line-height: 1.08;
        max-width: 150px;
        justify-self: end;
        line-height: 1.3;
        margin-right: 12px;
        align-self: start;
    }

    .benefits-container {
        gap: 35px;
        margin: 0 auto;
        margin-bottom: -100px !important;
        scale: 1.1;
        justify-content: flex-start;
    }

    .benefit-badge {
        height: 128px;
        width: 121px;
    }

    .benefits-list li {
        font-size: 25px;
        gap: 8px;
    }

    .mock-icon {
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    .hero-sun-wrapper {
        right: 5%;
        top: 10% !important;
        width: 120px;
        height: 120px;
    }
    .hero-sun-wrapper .hero-sun {
        width: 84px;
        margin-right: -42px !important;
    }

    .hero-glow {
        width: 350%;
        height: 350%;
        top: -150%;
        left: -150%;
    }
}

@media (max-width: 430px) {
    .hero {
        min-height: 520px;
    }
}

/* Widescreen Scaling to prevent content from looking minimized and background from clipping */
@media (min-width: 1400px) {
    .hero {
        height: 48vw;
        /* height: 400px !important; */
        max-height: 900px;
    }

    .hero-content {
        transform: translateY(-50%) scale(1.3);
        transform-origin: left center;
    }

    .hero-boxes {
       
        transform: scale(1.3);
        transform-origin: right bottom;
    }

    .hero-sun-wrapper {
        transform: scale(1.3);
        transform-origin: center center;
    }
}


@media (min-width: 1800px) {
    .hero {
        height: 45vw;
        max-height: 1200px;
    }

    .hero-content {
        transform: translateY(-50%) scale(1.6);
    }

    .hero-boxes {
        transform: scale(1.6);
    }

    .hero-sun-wrapper {
        transform: scale(1.6);
    }
}

/* =============================
   BENEFITS SECTION
============================= */
.benefits-powder {
    /* font-weight: 200; */
    padding: 10px 5%;
    background: #FFFEF2;
    font-family: 'Poppins', sans-serif;
}

.benefits-container-powder {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefits-container-powder h3 {
    font-weight: 400 !important;
    /* font-style: normal !important; */
}

.benefits-text-powder {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-left: 20px;
}

.benefit-item-powder {
    display: flex;
    align-items: center;
    gap: 25px;
}

.icon-circle-powder {
    /* background: #ff4d00; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle-powder img {
    height: 90px !important;
    width: 90px !important;
    object-fit: cover;
}

.benefit-content-powder {
    display: flex;
    flex-direction: column;
}

.benefit-content-powder h3 {
    font-family: 'Oswald', sans-serif;
    color: #ff4d00;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-content-powder p {
    color: #493E34;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.benefits-image-powder {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.benefits-image-powder img {
    max-width: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .benefits-powder {
        padding: 10px 20px;
    }

    .benefits-container-powder {
        flex-direction: column;
        gap: 50px;
    }

    .benefits-text-powder {
        gap: 40px;
        margin-left: 0;
    }

    .benefit-item-powder {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .icon-circle-powder {
        width: 75px;
        height: 75px;
    }

    .icon-circle-powder img {
        height: 40px;
    }

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

    .benefits-image-powder {
        justify-content: center;
        margin-top: 10px;
    }
}

/* =============================
   WHEN TO USE SECTION
============================= */
.when-use-section {
    /* margin-top: px; */
    margin-top: 10px;
    padding: 0px 5%;
    font-family: 'Poppins', sans-serif;
    background: #FFFEF2;
}

.when-use-container {
    background: linear-gradient(90deg, #F94C1B 0%, #E2499D 100%);
    border-radius: 20px;
    padding: 60px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    color: white;
}

.when-left {
    flex: 0 0 320px;
}

.when-left h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.when-left p {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 400;
}

.when-right {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.use-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
}

.use-icon {
    width: 90px;
    height: 90px;
    /* background: white; */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-icon img {
    height: 105px;
    object-fit: contain;
}

.use-item h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 900px) {
    .when-use-section {
        padding: 10px 10px;
    }

    .when-use-container {
        flex-direction: column;
        padding: 50px 30px;
        gap: 50px;
    }

    .when-left {
        flex: none;
        text-align: center;
        width: 100%;
    }

    .when-left h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .when-right {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        max-width: 330px;
        gap: 30px;
        margin: 0 auto;
    }

    .use-item {
        flex-direction: row;
        text-align: left;
        align-items: center;
        gap: 25px;
        width: 100%;
    }

    .use-icon {
        /* width: 100px; */
        /* height: 100px; */
        flex-shrink: 0;
    }

    .use-icon img {
        height: 105px;
        width: 105px;
    }

    .use-item h3 {
        font-size: 24px;
    }
}

/* =============================
   EXPLORE OUR RANGE SECTION
============================= */
.boost-section {
    padding: 60px 5%;
    text-align: center;
    background: #FFFEF2;
}

.boost-p {
    margin-bottom: 60px;
}

/* SLIDER WRAPPER */
.boost-slider {
    position: relative;
    max-width: 1100px;
    margin: auto;
    height: 450px;
}

.boost-track {
    position: relative;
    width: 100%;
    height: 100%;
}

/* STACKED SLIDES */
.boost-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

/* ACTIVE SLIDE */
.boost-slide.active {
    opacity: 1;
    z-index: 2;
}

/* Background */
.slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    transition: all 0.8s ease;
}

/* PRODUCT OVERLAY */
.slide-product {
    position: absolute;
    left: 48%;
    bottom: -17px;
    transform: translateX(-80%);
    height: auto;
    max-height: 480px;
    width: auto;
    z-index: 5;
    transition: transform 0.6s ease;
}

/* Slide active product animation */
.boost-slide.active .slide-product {
    transform: translateX(-50%) translateY(0);
}

/* TEXT */
.slide-content {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%) translateX(40px);
    width: 30%;
    color: white;
    opacity: 0;
    transition: all 0.8s ease;
    text-align: left;
}

.boost-slide.active .slide-content {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.slide-content h3 {
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 20px;
}

.slide-content button {
    margin-top: 20px;
    padding: 12px 35px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
}

.slide-content button:hover {
    transform: translateY(-3px);
    background-color: #D70F14;
    color: #fff;
}

.boost-arrows {
    position: absolute;
    top: 50%;
    left: -30px;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.arrow-right,
.arrow-left {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.arrow-left {
    background-color: #ffffff;
    rotate: -45deg;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.arrow-right {
    background-color: #FFCC04;
    rotate: -45deg;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.arrow-left:hover {
    background-color: #d5d3cd;
    transform: scale(1.1);
}

.arrow-right:hover {
    background-color: #efbf00;
    transform: scale(1.1);
}

.arrow-left img,
.arrow-right img {
    height: 18px;
    width: auto;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    font-weight: 500;
    margin-bottom: 45px;
    color: #3b332b;
}

.section-title span {
    color: #FF4A17;
}

/* DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 30px;
    height: 30px;
    /* margin-top: 0px; */
    margin-top: 45px;
    align-items: center;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background: #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s, width 0.3s, height 0.3s;
}

.carousel-dots .dot.active {
    background: #FF4A17;
    width: 16px;
    height: 16px;
}

/* Mobile image (shown instead of slider on very small screens) */
.boost-mobile-img {
    display: none;
    width: 100%;
    border-radius: 25px;
    margin-top: 20px;
}

/* ================= LARGE TABLET / SMALL LAPTOP ================= */
@media (max-width: 1210px) {
    .boost-slider {
        max-width: 95%;
        height: 420px;
    }

    .slide-product {
        left: 50%;
        bottom: -15px;
        transform: translateX(-70%);
        max-height: 420px;
    }

    .boost-slide.active .slide-product {
        transform: translateX(-50%);
    }

    .slide-content {
        width: 32%;
        right: 40px;
        /* line-height: -1.2; */
    }

    .slide-content h3 {
        font-size: 36px;
        /* line-height: 4//.2 !important; */
    }

    .boost-arrows {
        left: -20px;
        right: -20px;
    }
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
    .boost-slider {
        max-width: 90%;
        height: 380px;
    }

    .slide-product {
        left: 50%;
        bottom: -10px;
        transform: translateX(-70%);
        max-height: 360px;
    }

    .boost-slide.active .slide-product {
        transform: translateX(-50%);
    }

    .slide-content {
        width: 34%;
        right: 30px;
    }

    .slide-content h3 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 13px;
    }

    .slide-content button {
        padding: 10px 28px;
        font-size: 14px;
    }

    .boost-arrows {
        left: -15px;
        right: -15px;
    }

    .arrow-left,
    .arrow-right {
        width: 42px;
        height: 42px;
    }
}

/* ================= MOBILE ================= */
/* ================= DEDICATED MOBILE SLIDER ================= */
.boost-slider-mobile {
    display: none;
    /* Hidden on desktop */
}

/* ================= MOBILE ================= */
@media (max-width: 900px) {

    /* HIDE ALL DESKTOP SLIDER ELEMENTS */
    .boost-slider,
    .boost-arrows,
    .carousel-dots {
        display: none !important;
    }

    .boost-section {
        padding: 0;
        /* background-color: #F8F7F0; */
    }

    .section-title {
        font-size: 35px;
        margin-top: 40px;
        margin-bottom: 25px;
    }

    /* SHOW MOBILE SLIDER */
    .boost-slider-mobile {
        display: block;
        width: 100%;
        max-width: 400px;
        padding: 0px 10px;
        margin: 0 auto;
        /* padding: 10px 20px 40px 20px; */
        /* background-color: #F8F7F0; */
        position: relative;
        overflow: hidden;
    }

    /* Slider Wrapper */
    .slider-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        border-radius: 16px;
    }

    /* Slider Track */
    .slider-track {
        display: flex;
        transition: transform 0.4s ease-in-out;
        width: 100%;
    }

    /* Individual Slide */
    .slide {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        border-radius: 16px;
        position: relative;
        background-color: transparent;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    /* Top Image Area Wrapper */
    .slide .slide-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        /* Fixed equal height */
        border-radius: 16px 16px 16px 16px;
        overflow: hidden;
        z-index: 1;
    }

    /* Zoomed-in Background Image to crop out the right-side solid color */
    .slide .bg-image {
        width: 260%;
        /* Make image super wide so left edge fills the wrapper */
        max-width: none;
        height: 100%;
        object-fit: cover;
        object-position: left center;
        display: block;
        /* margin-left: 100px; */
        /* padding-left: 10px; */
        /* scale:.98; */
    }

    /* Product Box Overlapping Image */
    .slide .product-image {
        position: absolute;
        right: 25px;
        top: 200px;
        /* Aligned exactly to the seam */
        transform: translateY(-50%);
        /* Perfectly placed on the middle boundary */
        width: 130px;
        height: 220px;
        z-index: 10;
        border-radius: 6px;
        /* box-shadow: -4px 8px 16px rgba(0,0,0,0.25); */
        object-fit: contain;
    }

    /* Bottom Content Area */
    .slide .slide-content {
        background-color: transparent !important;
        width: 100%;
        height: 300px;
        /* Fixed equal height to match the image wrapper */
        border-radius: 0 0 16px 16px;
        /* Round bottom corners only */
        margin-top: 0;
        /* Remove overlapping margin */
        padding: 30px 10px 40px 10px;
        position: relative !important;
        top: 0 !important;
        bottom: auto !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1;
        text-align: center;
        color: white;
        display: flex !important;
        flex-direction: column;
        justify-content: flex-end;
        /* Push text down to avoid overlapping the centered product image */
        align-items: center;
        box-sizing: border-box;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .slide-content .desktop-break {
        display: none !important;
    }

    .slide .slide-title {
        font-family: 'Oswald', sans-serif;
        font-size: 28px;
        white-space: normal;
        text-transform: uppercase;
        margin-bottom: 12px;
        letter-spacing: 0.5px;
        line-height: 1.3;
        padding-right: 15px;
        padding-left: 15px;
        width: 100%;
        box-sizing: border-box;
        font-weight: 500;
        overflow: hidden;
        word-break: break-word;
    }

    .slide .slide-description {
        font-size: 16px;
        line-height: 1.5;
        margin-bottom: 25px;
        font-weight: 400;
        /* Modified to stick closer to our branding */
        opacity: 0.95;
        max-width: 330px;
    }

    /* Shop Now Button */
    .slide .shop-btn {
        background-color: white;
        color: #3D3D3D;
        border: none;
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        cursor: pointer;
        letter-spacing: 0.5px;
        transition: background-color 0.2s, transform 0.1s;
        margin-top: auto;
    }

    .slide .shop-btn:hover {
        background-color: #f0f0f0;
    }

    .slide .shop-btn:active {
        transform: scale(0.97);
    }

    /* Pagination Dots */
    .slider-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 30px;
        margin-top: 25px;
        height: 30px;
    }

    .slider-dots .mob-dot {
        width: 8px;
        height: 8px;
        background-color: #D3D3D3;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .slider-dots .mob-dot.active {
        background-color: #F25424;
        width: 16px;
        height: 16px;
    }
}

/* ===============================
   HOW TO USE SECTION
================================ */
.how-to-use {
    padding: 0px 20px;
    text-align: center;
    /* background-color: #F8F7F0;  */
    overflow: hidden;
}

/* Base styles / Desktop */
.steps-container {
    display: flex;
    padding: 0px 10px;
    justify-content: center;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    /* More room for 4 cards */
    margin: 0 auto;
    position: relative;
    margin-top: 100px;
}

.step-card {
    position: relative;
    width: 23%;
    max-width: 300px;
    /* Allow cards to spread wider */
}

.big-number {
    position: absolute;
    top: -80px;
    left: 25px;
    transform: translateX(-30%);
    font-size: 80px;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    color: #F94C1B;
    opacity: 0.15;
    z-index: 0;
    pointer-events: none;
}

.card-content {
    background: #FFF2BD;
    border-radius: 20px;
    height: 180px;
    padding: 25px 15px;
    position: relative;
    z-index: 2;
    overflow: visible;
    clip-path: inset(-200px 0px 0px 0px round 20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.card-content h3 {
    color: #F25424;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1.2;
    position: relative;
    z-index: 10;
    padding-right: 50px;
    /* Provide natural padding without forcing narrow columns */
}

.card-content img {
    position: absolute;
    bottom: 0px;
    right: 5px;
    height: 170px;
    object-fit: contain;
    z-index: 5;
}

/* Specific Image Fixes for Desktop Overlaps */
.step-card:nth-child(1) .card-content img {
    height: 190px;
    right: 15px;
}

.step-card:nth-child(3) .card-content img {
    height: 140px;
    right: 10px;
}

.step-card:nth-child(5) .card-content img {
    height: 190px;
    right: 5px;
}

.step-card:nth-child(7) .card-content img {
    height: 200px;
    /* Scaled cleanly so he sits perfectly inside */
    right: -30px;
    bottom: -10px;
}

.arrow-htu {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.arrow-htu img {
    background: #F25424;
    border-radius: 50%;
    width: 35px;
    padding: 10px;
}

  .card-content h3{
    font-size: 24px;
    font-weight: 500;
  }

/* ===============================
   HOW TO USE - MOBILE LAYOUT
================================ */
@media (max-width: 900px) {
    .how-to-use {
        padding: 0px 10px;
    }

    .steps-container {
        flex-direction: column;
        align-items: flex-end;
        /* Push cards to right */
        gap: 45px;
        padding-left: 10px;
        padding-right: 15px;
        /* Minimal edge padding */
    }

    .step-card {
        width: calc(100% - 120px);
        /* Fill screen BUT always reserve 120px on left */
        max-width: 380px;
        margin: 0;
    }

    .big-number {
        left: -130px !important;
        top: 5px;
        /* left: auto; */
        /* Clear any left value */
        right: 100%;
        /* Anchor right edge strictly to card's left edge */
        margin-right: 15px;
        /* Gentle space holding it off the card */
        transform: none;
        font-size: 90px;
        /* Big crisp number */
        line-height: 0.8;
    }

    .card-content {
        height: 160px;
        padding: 20px 15px;
    }

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

    .step-card:nth-child(1) .card-content img {
        height: 190px;
        right: 5px;
    }

    .step-card:nth-child(3) .card-content img {
        height: 140px;
        /* Spoon sits above glass */
        right: 5px;
    }

    .step-card:nth-child(5) .card-content img {
        height: 190px;
        right: 5px;
    }

    .step-card:nth-child(7) .card-content img {
        height: 220px;
        right: -15px;
        bottom: -15px;
    }

    .arrow-htu {
    display: none; /* Hide arrows on mobile completely */
  }
}

/* ===============================
   WATCH SECTION (VIDEO CAROUSEL)
================================ */
.watch-section-powder {
    margin-top: 40px;
  padding: 80px 20px;
  text-align: center;
  /* background-color: #F8F7F0; Match page background */
  overflow: hidden;
}

.watch-frame img {
    transition: all 0.5s ease;
}

.slide-main-powder img {
    transform: scale(1.1);
}

.slide-side-powder img {
    opacity: 0.7;
    transform: scale(0.9);
}

.watch-slider-powder {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 901px) {
    .how-to-use {
        padding-left: 5%;
        padding-right: 5%;
    }

    .watch-section-powder {
        padding-left: 5%;
        padding-right: 5%;
    }

    .watch-slider-powder {
        max-width: 1200px;
        gap: 20px;
    }

    .slide-side-powder {
        width: 200px;
    }

    .slide-main-powder {
        width: min(560px, 50vw);
    }

    .left-icon button,
    .right-icon button {
        padding: 6px;
    }
}

/* SIDE IMAGES */
.slide-side-powder {
  width: 250px;
  flex-shrink: 0;
}
.slide-side-powder .watch-frame img {
  width: 100%;
  border-radius: 18px;
  opacity: 0.4; /* Washed out aesthetic */
  object-fit: cover;
  display: block;
}

/* MAIN IMAGE */
.slide-main-powder {
  position: relative;
  width: 600px;
  flex-shrink: 0;
}
.slide-main-powder .watch-frame img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.4s ease;
  display: block;
}
.slide-main-powder .watch-frame img:hover {
  transform: scale(1.02);
}

/* PLAY BUTTON */
.play-button-powder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  /* background: white; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
}
.play-button-powder:hover {
  transform: translate(-50%, -50%) scale(1.1);
}
.play-button-powder img {
  width: 78px; /* Adjust size of play triangle */
}

/* ARROWS */
.left-icon button, 
.right-icon button {
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 10px;
  opacity: 0.7;
}
.left-icon button img,
.right-icon button img {
  width: 35px; /* Properly scale the SVG arrows */
  transition: transform 0.2s ease;
}
.right-icon button img {
  transform: scaleX(-1); /* Flip the backward arrow to point right */
}
.left-icon button:hover, 
.right-icon button:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* ===============================
   FAQ SECTION
================================ */
.faq-section-powder {
  padding: 60px 10px;
  /* background-color: #F8F7F0; */
}

.faq-container-powder {
  background: #FEECDC;
  border-radius: 20px;
  padding: 60px 150px;
  max-width: 1200px;
  margin: auto;
}

.faq-title-powder {
  text-align: center;
  font-size: 44px;
  font-family: 'Oswald', sans-serif;
  margin-bottom: 40px;
  color: #4b3f35;
  text-transform: uppercase;
}

.faq-title-powder span {
  color: #F25424;
}

.faq-accordion-powder {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item-powder {
  border-radius: 12px;
  padding: 20px 30px;
  background: transparent;
  transition: 0.3s ease;
 transition: all 0.3s ease;
}

.faq-item-powder.active {
  background: #F25424;
  color: white;

}
.faqopen{
    opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.faclose{
     opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.faq-question-powder {
    font-weight: 400 ;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question-powder h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 400;
  margin: 0;
}

.arrow-powder {
  display: flex;
  align-items: center;
  justify-content: center;
}
.faq-icon-img {
  width: 16px;
  transition: 0.3s ease;
}
.faq-item-powder.active .faq-icon-img {
  filter: brightness(0) invert(1);
}

.faq-answer-powder {
  margin-top: 15px;
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Poppins', sans-serif;
  display: none;
}

.faq-item-powder.active .faq-answer-powder {
  display: block;
}

/* ===============================
   FAQ SECTION - MOBILE
================================ */
@media (max-width: 900px) {
  .faq-section-powder {
    margin-top: 20px;
    padding:0px;
  }
  .faq-container-powder {
    padding: 35px 20px;
    border-radius: 18px;
  }
  .faq-title-powder {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  .faq-question-powder h3 {
    font-weight: 400 !important;
    font-size: 18px;
    line-height: 1.4;
  }
  .faq-answer-powder {
    font-size: 14px;
  }
  .faq-item-powder {
    padding: 15px 15px;
  }
  .faq-accordion-powder {
    gap: 10px;
  }
}

/* ===============================
   WHERE TO BUY SECTION
================================ */
/* ===============================
   WHERE TO BUY SECTION
================================ */
.where-buy {
  padding: 50px 20px 40px;
  background-color: transparent; /* Seamless blend */
  text-align: center;
}
.where-title {
  font-family: 'Oswald', sans-serif;
  font-size: 40px;
  color: #4b3f35;
  text-transform: uppercase;
  margin-bottom: 15px;
  letter-spacing: 1px;
}
.where-title span {
  color: #F25424;
}
.where-subtitle {
  font-family: 'Poppins', sans-serif;
  color: #666;
  font-size: 16px;
  margin-bottom: 50px;
}
.buy-platforms {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.buy-btn{
    font-family: oswald, sans-serif !important;
    font-weight: 500 !important;
}
.platform-card {
  /* background: white; */
  border-radius: 12px;
  padding: 15px 25px;
  box-shadow: 0 5px 12px #F94C1B33; /* Subtle peach/orange glow shadow */
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  min-width: 170px;
}
.platform-card img {
  max-height: 40px;
  max-width: 120px;
  object-fit: contain;
}

/* ===============================
   FOOTER
================================ */
footer {
  background-color: transparent;
  padding: 40px 20px 20px;
}

@media (min-width: 901px) {
    footer {
        padding-left: 5%;
        padding-right: 5%;
    }
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto 40px;
  gap: 30px;
}
.footer-col.left {
  flex: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}
.footer-col.left img {
  margin-top: 5px;
}
.footer-col.left p {
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.footer-col.center {
  flex: 1;
  display: flex;
  justify-content: center;
}
.footer-col.center img {
  width: 180px; /* Scaling logo to proper desktop proportion */
  max-width: 100%;
}
.footer-col.right {
  flex: 1.5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 25px;
}
.footer-links a {
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: #333;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.footer-ai-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  color: #555;
}
.ai-star {
  background: #F25424;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: bold;
}
/* Desktop orange pill */
.footer-bottom {
  background: #F25424;
  max-width: 1400px;
  margin: 0 auto;
  border-radius: 30px;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
}
.privacy-tag a{
    color: #fff;
}
.socials {
  display: flex;
  gap: 20px;
}
.socials a {
  color: white;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.socials a:hover {
  opacity: 0.8;
}
.foot-right, .foot-left {
  display: flex;
  align-items: center;
}
.foot-left span,
.foot-right a,
.foot-right span {
  color: white;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.2px;
}
.foot-right a {
  margin-right: 30px;
}

/* ===============================
   WHERE TO BUY / FOOTER MOBILE
================================ */

@media (max-width: 480px) {
.buy-platforms {
    gap: 15px;
    justify-content: flex-start;
  }
  .footer-bottom .privacy-tag{
        order: 2;
        margin-top: 10px;
        color: #493E34;
    }
        .privacy-tag a{
        color: #493E34 !important;
    }
}
@media (max-width: 900px) {
  /* Where To Buy Stack */
  .where-buy {
    padding: 50px 10px 30px;
  }
  .buy-platforms {
    gap: 12px;
    align-items: stretch;
    justify-content: flex-start;
  }
  .platform-card {
    min-width: 120px;
    width: calc(50% - 6px); /* Perfect 2-column grid */
    padding: 15px 10px;
    height: 70px;
    border-radius: 10px;
  }
  
  /* Footer Restructure */
  footer {
    padding: 30px 10px 20px;
  }
  .footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  
  /* Unwrap ONLY the center and right to splice their children */
  .footer-col.center,
  .footer-col.right {
    display: contents;
  }
  
  /* Dynamic HTML Ordering exactly matching image */
  .footer-col.center img { 
    order: 1; 
    margin-bottom: 5px; 
    width: 140px; 
  }
  
  .footer-links { 
    order: 2; 
    width: 100%; 
    justify-content: center; 
    gap: 12px; 
    flex-wrap: wrap; 
  }
  .footer-links a { 
    font-size: 11px; 
  }

  /* Keep Location securely bounded */
  .footer-col.left {
    order: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 8px; /* Tightly couples the Icon and Address */
    margin-top: 15px;
  }
  .footer-col.left img { 
    height: 35px !important; 
    margin: 0;
  }
  .footer-col.left p { 
    text-align: center; 
    font-size: 11px; 
    line-height: 1.6; 
    max-width: 95%; 
    margin: 0; 
  }
  
  .footer-ai-label { 
    order: 4; 
    margin-bottom: 5px; 
    font-size: 11px;
  }
  
  /* Socials Orange Pill Injection */
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    background: transparent;
    width: 100%;
    padding: 0px 0;
    /* margin-bottom: 20px; */
  }
  .foot-left, .foot-right {
    display: contents;
  }
  
  .socials { 
    order: 1; 
    background: #F25424; 
    width: 95%;
    max-width: 350px;
    margin: 0 auto;
    border-radius: 40px;
    padding: 16px 0;
    justify-content: center;
    gap: 20px;
  }
  .foot-right a { 
    order: 2; 
    color: #555; 
    font-size: 10px; 
    margin: 5px 0 0 0; 
  }
  .foot-left span { 
    order: 3; 
    color: #555; 
    font-size: 10px;
    /* margin-top: 15px; */
    /* border-top: 1px solid #e0e0e0; */
    padding-top: 15px;
    width: 100%;
  }
  .foot-right .agency { 
    order: 4; 
    color: #555; 
    font-size: 10px; 
  }

  /* Copyright text color on mobile */
  .footer-bottom > span {
    color: #333;
    font-size: 11px;
    text-align: center;
  }
  
  .footer-bottom > span:first-child {
    order: 3;
    /* margin-top: 15px; */
    /* border-top: 1px solid #e0e0e0; */
    /* padding-top: 15px; */
    width: 100%;
  }
  
  .footer-bottom > span:last-child {
    order: 4;
  }
}

/* DOTS */
.slider-dots-powder {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dot-powder {
  width: 6px;
  height: 6px;
  background: #cbd0d4;
  display: inline-block;
  border-radius: 50%;
  margin: 0 10px;
  cursor: pointer;
}
.dot-powder.active {
  background: #F94C1B;
  width: 8px;
  height: 8px;
}

/* ===============================
   WATCH SECTION - MOBILE
================================ */
@media (max-width: 900px) {
    .watch-section-powder{
        padding: 20px 14px;
    }
  .watch-slider-powder {
        justify-content: center;
        align-items: center;
    gap: 0;
  }
  .slide-side-powder {
    display: none; /* Hide side-cropped images entirely */
    }
  .left-icon, .right-icon {
    display: none; /* Hide interactive arrows */
  }
  .slide-main-powder {
        width: min(100%, 500px);
    max-width: 500px; /* Sensible constraint */
        margin: 0 auto;
      padding: 0 14px; /* Breathe off phone edges */
  }
  .slide-main-powder .watch-frame img {
    border-radius: 16px;
  }
  .play-button-powder {
    width: 60px;
    height: 60px;
  }
  .play-button-powder img {
    width: 58px;
  }
}