/* === Hydration Section Responsive Styles === */
:root {
    --bg-color: #fcfbf5;
    --primary-blue: #2ab2e5;
    --primary-orange: #f55b3a;
    --text-dark: #5a5a5a;
    --text-light: #7a7a7a;
    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Roboto', sans-serif;
}



.hydration-section {
    /* background: #fff; */
    border-radius: 24px;
    /* box-shadow: 0 4px 24px rgba(0,0,0,0.06); */
    /* padding: 48px 32px 48px 32px; */
    padding: 20px 80px;
    margin: 40px auto;
    max-width: 1400px; /* ← your desired width, in ONE place */
    overflow: hidden;
    /* padding: 0; */
}


.features-grid {
    display: grid;
    padding: 10px;
    /* padding: 11px 1px 1px 45px; */
    width: 100%;
    box-sizing: border-box; /* padding is included in the 100% width */
    row-gap: 25px;
}

@media (max-width: 899px) {
    .features-grid {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .item-main { order: 1; }
    .item-vit { order: 2;
     }
    .item-formats { order: 3; }
    .item-caff { order: 4; }
    .item-sugar { order: 5; }
    .item-img-wrapper { order: 6; margin-top: 20px; }
}

@media (min-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
        column-gap: 60px;
        row-gap: 25px;
        align-items: start;
    }
    .item-main { grid-column: 1; grid-row: 1; }
    .item-vit { grid-column: 1; grid-row: 2; }
    .item-formats { grid-column: 1; grid-row: 3; }
    .item-img-wrapper { grid-column: 2; grid-row: 1; margin-top: -20px; }
    .item-caff { grid-column: 2; grid-row: 2; }
    .item-sugar { grid-column: 2; grid-row: 3; }
}

.feature-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* gap: -50px; */
    /* padding: 1000px 0; */
    justify-content: space-evenly;
    text-align: center;
}

@media (min-width: 900px) {
    .feature-block {
        flex-direction: row;
        align-items: center;
        text-align: left;
    }
}

.icon-container {
    width: 80px;
    height: 80px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-bottom: 20px;
}

.icon-container img{
    width: 100%;
    height: 100%;
}

@media (min-width: 900px) {
    .icon-container {
        margin-bottom: 0;
        margin-right: 25px;
    }
}

.icon-container svg {
    width: 35px;
    height: 35px;
    fill: none;
    stroke: white;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.feature-content h2, 
.feature-content h3 {
    font-family: oswald, sans-serif;
    font-size: 24px;
    /* color: var(--primary-orange); */
    font-weight: 320;
    letter-spacing: 5%;
    color: #F94C1B;

    text-transform: uppercase;
    letter-spacing: 0.5px;
    /* margin-bottom: 15px; */
}



.feature-content p {
    font-size: 16px;
    color: #493E34;
    font-weight: 400;
}
.item-main{
    align-items: flex-start;
}

.item-main .feature-content h2 {
    font-size: 26px;
    margin-bottom: 25px;
    line-height: 33px;
    margin-left: 14px;
    max-width: 400px;
}

@media (max-width: 899px) {
    .item-main .feature-content h2 {
        max-width: 100%;
    }
}

.feature-list {
    list-style: none;
    padding-left: 0;
    text-align: left;
}

.feature-list li {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 20px;
    left: 0px;
    /* font-family: oswald, sans-serif !important; */
    position: relative;
    padding-left: 20px;
    line-height: 1.6;
}

.feature-list li span.number {
    position: absolute;
    left: 0;
    font-weight: 700;
}

.feature-list li strong {
    font-size: 16px;
    font-weight: 400;
    color: #493E34;
}

.image-container {
    position: relative;
    /* width: 100%; */

    max-width: 500px;
    margin: 0 auto;
}
.image-containe img{
    object-fit: contain;
    width: 50px;
}

@media (min-width: 900px) {

    .image-container {
        width: 110%;
        margin-left: 20px;
    }
   
}

.clipped-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    aspect-ratio: 4/3;
    /* Remove or relax clip-path for full visibility */
    /* clip-path: none; */
}

.decor {
    position: absolute;
    z-index: 1;
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.decor-pink { stroke: #e94e9b; }
.decor-blue { stroke: #2ab2e5; }

.d1 { top: -30px; left: 15%; width: 45px; transform: rotate(-15deg); }
.d2 { top: 10px; right: -20px; width: 35px; }
.d3 { bottom: 15%; left: -30px; width: 55px; }
.d4 { bottom: -20px; right: 25%; width: 25px; }

@media (max-width: 899px) {
    .d1 { left: 10%; top: -20px; }
    .d2 { right: 0; top: 0; }
    .d3 { left: 0; bottom: 10%; }
    .d4 { right: 10%; bottom: -10px; }
}
@media (max-width: 900px) {
    .carousel-dots {
        display: none !important;
    }
}
/* === SHOW ONLY MOBILE SLIDER ON MOBILE, HIDE DESKTOP SLIDER === */
@media (max-width: 900px) {
        .item-main{
    align-items: center;
}
    
    .item-main .feature-content h2{
        font-size: 22px;
        line-height: 28px;
        margin-left: 0;
        width:320px;
        margin: auto;

        text-align: center;
    }
    .boost-slider {
        display: none !important;
    }
    .boost-slider-mobile,
    .slider-section.boost-slider-mobile {
        display: block !important;
    }
}

@media (min-width: 901px) {
    .boost-slider {
        display: block !important;
    }
    .boost-slider-mobile,
    .slider-section.boost-slider-mobile {
        display: none !important;
    }
}
@media (max-width: 750px) {
    .boost-slider-mobile .slide-title,
    .slider-section .slide-title {
        text-align: center !important;
        word-break: break-word !important;
        white-space: normal !important;
        hyphens: auto;
        letter-spacing: 0.01em;
        width: 100%;
        display: block;
    }
}
/* === MOBILE SLIDER HEADING & BUTTON SPACING FIX === */
@media (max-width: 750px) {
    .boost-slider-mobile .slide-title,
    .slider-section .slide-title {
        font-size: 1.7rem !important;
        line-height: 1.13 !important;
        padding: 0 8px 0 8px !important;
        margin-bottom: 10px !important;
        text-align: center;
        letter-spacing: 0.01em;
    }
    .boost-slider-mobile .slide-content,
    .slider-section .slide-content {
        padding: 12px 8px 10px 8px !important;
    }
    .boost-slider-mobile .slide-content button,
    .slider-section .slide-content button {
        margin-top: 12px !important;
    }
}
/* === MOBILE SLIDER HEADING FIX === */
@media (max-width: 750px) {
    .boost-slider-mobile .slide-title,
    .slider-section .slide-title {

        font-size: 35px !important;
        line-height: 1.18 !important;
        padding: 0 12px 0 12px !important;
        word-break: break-word;
        white-space: normal;
        margin-bottom: 8px !important;
        text-align: center;
        letter-spacing: 0.02em;
    }
    .boost-slider-mobile .slide-content,
    .slider-section .slide-content {
        padding: 12px 8px 18px 8px !important;
    }
}
/* Hydration Section Alignment Fixes */


.hydration-container {
    display: flex;
    align-items: stretch;
    min-height: 350px;
    height: 100%;
}

.left-box, .right-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.left-box {
    flex: 1.1;
    border-right: 1px solid #e5e0d6;
    padding: 32px 28px 28px 28px;
}

.right-box {
    flex: 0.9;
    align-items: center;
    padding: 28px;
}

.left-box .feature-bottom {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.left-box .feature-bottom .feature-item:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
* {
    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 , html {
    /* background: linear-gradient(90deg, #ff4d14 0%, #ffb633 100%); */
    background-color: #FFFEF2;
    overflow-x: hidden ;
    min-height: 200vh;
}

.header-container {
    margin-top: 15px;
    position: fixed;
    top: 0;
    transition: all 0.4s ease;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 18px;
}
/* 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);
    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;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active-item {
    background-color: #f05a28;
    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;
    text-decoration: none;

    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;
    text-decoration: none;
}

/* 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;
    }
     .clipped-image{
        /* margin-left: 10px !important; */
        aspect-ratio:1/1 !important;
    }
}

/* =============================
   WHY SECTION
============================= */
.why-glucond {
    /* padding: 60px 5%; */
    padding: 42px 1px 0px 1px ;
    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;
    /* margin-left: 35px; */
    font-weight: 400;
}

.section-title-why {
    font-family: 'Oswald', sans-serif;
    font-size: 36px;
    font-weight: 492;
    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: 44px;
    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: 10px 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 100% no-repeat; */
    overflow-x: hidden;
    background: url('./assets/hero_new.png') center center no-repeat;
    /* background-size: auto; */
    overflow-y: hidden;
    background-size: cover;

}

.hero-sun-wrapper {
     position: absolute;
top: 19%;
width: 369px;
display: flex;
justify-content: center;
align-items: center;
z-index: 2;
left: 37%;
    /*width: 367px;
    position: absolute;
    top: 38%;
    left: 482px;
   
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;*/
}

.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: 88%;
    object-fit: contain;
    z-index: 2;
}

.hero-boxes {
    position: absolute;
    /* bottom: -0px; */
    /* bottom: 0px !important; */
    top: 93px;
    right: 6%;
    width: 400px;
    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: 48%;
    transform: translateY(-50%);
    z-index: 5;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.hero-heading {
    color: #fff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    /* 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;
    }
}
@media (max-width:668px) {
    .hero-sun-wrapper {
             width: 367px;
    display: none;
    position: absolute;
    top: 38%;
    left: 482px;
    transform: translateY(-50%);
    z-index: 2;
    text-align: right;
    }
    
}
.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 (min-width: 900px) and (max-width: 960px) {
    .hero{
            min-height: 474px !important;
    }

    .hero-boxes {
        
        right: 3% !important;
        top: 116px  !important;
        width: 37% !important;
    }

    .hero-sun-wrapper {
left: 31%;
    top: 48% !important;
    width: 268px;
    height: 140px;
    }

element.style {
}
.feature-content {
    flex: 1 1 0%;
}
* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
user agent stylesheet
div {
    display: block;
}

.feature-block {
    text-align: center;
}

.when-left p {
margin-left:200px;
}

    .hero-content {
        left: 3%;
        transform: translateY(-32%);
    }
}

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

/* ── INTERMEDIATE: tablet / small laptop (481px → 899px) ── */
@media (min-width: 481px) and (max-width: 899px) {

    .hero {
    width: 100%;
    min-height: 444px;
}
    /* Scale down the product boxes so they don't eat into the text */
    .hero-boxes {
            width: clamp(220px, 36vw, 380px);
            right: 4%;
            top: 160px;
    }

    /* Shrink & left-align the text block */
    .hero-content {
        left: 3%;
        top: 45%;
        transform: translateY(-50%);
        max-width: 42%;
    }

    /* Scale badge down proportionally */
    .benefit-badge {
        height: clamp(80px, 12vw, 120px);
    }

    /* Shrink logo text heading */
    .hero-logo-text {
        height: clamp(38px, 6vw, 55px);
    }
}


@media (max-width: 480px) {
    .title-img-span img {
        height: 28px;
    }

    .hero {
        /* top:0; */
        /*min-height: 600px !important;*/
        background-image: url('./assets/mobile_bg_new.png');
        /* background-position: 35% center; */
        background-repeat: no-repeat;
        background-size: cover;
        /* overflow: visible; */
        /* background-size: 145% auto */
    }

    .hero-boxes {
        position: absolute;
        width: 54%;
        max-width: 320px;
        /* bottom: -15% !important; */
        top: 300px;
        right: 5%;
        left: auto;
        transform: none;
        z-index: 10;
    }

    .hero-content {
        left: 5%;
        gap: 15px;
        top: 20%;
        transform: none;
        align-items: center;
        justify-content: center;
        /* width: 100%; */
        padding: 0;
        z-index: 5;
    }

    .hero-logo-text {
        height: auto;
        width: 139px;
        max-width: 250px;
    }

    .hero-heading {
        font-size: 32px;
        text-align: left;
        margin-bottom: 20px;
    }

    .benefits-container {
        gap: 0;
        margin: 0;
        scale: 1;
        justify-content: flex-start;
    }

    .benefit-badge {
        /* height: 32px !important; */
        width: 133;

        max-width: 170px;
        margin-left: 20px;
    }

    .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 (min-width: 1599px) and (max-width: 2000px) {
    .hero-boxes {
    top: 310px !important;
    width: 437px !important;
    right: 4% !important;
    }
    .hero-content {
    transform: translateY(-50%) scale(1.5);
    transform-origin: left center;
    left: 7%;
    top: 48%;
}
}

@media (min-width: 1200px) and (max-width: 1290px) {
    

    .hero-boxes {
       top: 118px;
    right: 5%;
    width: 406px;
    }
}

@media (min-width: 390px) and (max-width: 491px) {
    .hero {
        min-height: 494px;
    top: 0px;
    }

    .hero-boxes {
        top: 293px;
    }







    
}
@media (min-width: 360px) and (max-width: 362px) {
.hero {
    min-height: 478px !important;
    top: 0px;
    }

    .hero-boxes {
        top: 288px !important;;
        right:2% !important;;
    }
}
@media (min-width: 430px) and (max-width: 435px) {
.hero {
        min-height: 539px;
    top: 0px;
    }

    .hero-boxes {
        top: 317px;
    }
}
@media (min-width: 300px) and (max-width: 485px) {
    .hero {
        min-height: 456px;
        top: 0px;
    }


    .when-left p {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 360;
    width: 50%;
    margin: auto;
}

    .hero-boxes {
    position: absolute;
    width: 47% !important;
    max-width: 320px !important;
    /* bottom: -15% !important; */
    top: 248px !important;
    right: 7% !important;
    left: auto;
    transform: none;
    z-index: 10;
}
    }
    .hero-content {
    left: 0%;
    gap: 15px;
    top: 29%;



}


@media (min-width: 1150px) and (max-width: 1155px) {
    .hero-boxes {
        top: 140px !important;
        right:4% !important;
        width:353px !important;
    }
    
    .hero-content{
        left:8% !important;
    }

    .hero-sun-wrapper{
        top: 50%;
    left: 378px;
    }

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

    }
    

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

    .hero-boxes {

        /* transform: scale(1.3); */
        transform-origin: right bottom;
        top: 82px !important;

        width: 471px !important;
        right: 5%! important;
    }

    .hero-sun-wrapper {
        transform: scale(1);
        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: 60px 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: 0px;
        margin-bottom: 10px;
    }
}

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

.when-use-container {
    background: linear-gradient(to right, #E6007E, #00C5E8);
    /* background: #FF4A17; */
    border-radius: 20px;
    /* padding: 60px 80px; */
    /* height: 250px; */
    padding: 65px 43px 45px 50px;
    max-width: 1216px;
    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: 43px;
    font-weight: 440;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.when-left p {
    color:#fff ;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 360;
    width:50%;
}

.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: 320;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

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

    .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: 25px 5%;
    text-align: center;
    background: #FFFEF2;
}

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

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

.boost-track {
    position: relative;
    width: 100%;
    /* margin-top: 20px; */
    height: 100%;
}

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

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

/* Creative Visualization Label */
.creative-visuals {
    position: absolute;
    top: 14px;
    left: 18px;
    z-index: 10;
    font-size: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.4px;
    margin: 0;
    pointer-events: none;
}

/* 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: 52%;
    top: -33px;
    /* bottom: -px; */
    transform: translateX(-80%);
    height: auto;
    max-height: 430px;
    scale: 1.08;
    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;
    line-height:1.2
}

.slide-content button {
    margin-top: 20px;
    padding: 14px 20px;
    border-radius: 30px;
    border: none;
    font-weight: 600;
    /* width: 147px; */
    /* height: 47px !; */
    cursor: pointer;
}

.slide-content p{
color: #fff;
    font-size: 16px;
    font-weight: 300;
}

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

.boost-arrows {
    position: absolute;
    top: 44%;
    left: 10px;
    right: 24px;
    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: 75px;
    color: #3b332b;
}

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

/* DOTS */
.carousel-dots {

    margin: 5px auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    /* margin-top: 45px; */
    height: 20px;
    /* margin: 25px 0 0; */
    position: relative;
    z-index: 5;
    max-width: 1100px;
    width: 100%;
}

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

.carousel-dots .dot.active {
    background: #F94C1B;
    width: 8px;
    height: 8px;
}

/* 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: 40%;
        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: 210px;
        /* 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: 24px;
    white-space: nowrap;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    line-height: 1.2;
    padding-right: 15px;
    padding-left: 15px;
    width: 100%;
    box-sizing: border-box;
    font-weight: 500;
    }

    .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 10px !important;
        border-radius: 25px;
        font-weight: 500;
        width: 126px !important;
        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;
}

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

    .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: 0px 20px;
    text-align: center;
    /* background-color: #F8F7F0; Match page background */
    overflow: hidden;
}

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

    .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;
    object-fit: cover;
    display: block;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

/* MAIN IMAGE */
.slide-main-powder {
    position: relative;
    width: 600px;
    flex-shrink: 0;
}

.slide-main-powder .watch-frame img {
    width: 100%;
    border-radius: 20px;
    transition: opacity 0.35s ease, transform 0.35s 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: 20px 175px;
    max-width: 1200px;
    margin: auto;
}

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

.faq-title-powder span {
    font-family: 'Oswald', sans-serif;
    color: #F25424;
}

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

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

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

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

.faq-question-powder h3 {
    color: #493E34;
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 370;
    margin: 0;
}

.arrow-powder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-icon-img {
    width: 24px;
    transition: 0.3s ease;
}

.faq-item-powder.active .faq-icon-img {
    filter: brightness(0) invert(1);
}

.faq-item-powder.active .faq-question-powder h3 {
    color: #fff;
}

.faq-answer-powder {
    margin-top: 15px;
    font-size: 16px;
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, opacity 0.25s ease;
}
.faq-answer-powder p {
    margin: 0;
    color: #fff;
}


.faq-item-powder.active .faq-answer-powder {
    opacity: 1;
}

/* ===============================
   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: 3px 20px 40px;
    background-color: transparent;
    /* Seamless blend */
    text-align: center;
}

.where-title {
    font-family: 'Oswald', sans-serif;
    font-size: 45px;
    color: #4b3f35;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.where-title span {
    font-family: 'Oswald', sans-serif;
    color: #F25424;
}

.where-subtitle {
    font-family: 'Poppins', sans-serif;
    color: #666;
    font-size: 18px;
    margin-bottom: 50px;
    font-weight: 400;
}

.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: 95px;
  min-width: 220px;
}

.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; */
    /* 2 april */
    margin: 0 auto 20px;
    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: 16px;
    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;
} */
/* 2 april */
.footer-col.right {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 60px;
    margin-top: 15px;
}

.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: 14px;
    color: #555;
    margin-top: 10px;
        padding-right: 10px;
}

.ai-star {
    background: #F25424;
    color: white;
    border-radius: 50%;
    /* width: 20px;
  height: 20px; */
    /* 2 april */
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* font-size: 10px; */
    /* 2 april */
    font-size: 14px;
    padding-top: 5px;
    /* 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; */
    /* 2 april */
    font-size: 14px;
}

.privacy-tag a{
    color: white !important;
    text-decoration: none;
  
}

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

@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 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: 14px;
        line-height: 1.6;
        /* max-width: 95%; */
        margin: 0;
    }

    .footer-ai-label {
        order: 4;
        margin-bottom: -10px;
        font-size: 11px;
    }

    /* Socials Orange Pill Injection */
    .footer-bottom {
        display: flex;
        flex-direction: column;
        align-items: center;
        /* gap: 12px; */
        gap: 5px;
        background: transparent;
        width: 100%;
        padding: 0px 0;
        /* margin-bottom: 20px; */
    }

        .footer-bottom .privacy-tag {
        order: 2;
        margin-top: 10px;
      
    }
        .footer-bottom .privacy-tag a {
       
        color: #493E34 !important;
    }
    .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 7px;
    }

    .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 10px;
        /* 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;
    }
}
/* 
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;600&family=Poppins:wght@400;500;600&display=swap'); */

/* --- Main Layout --- */

.hydration-container {
  display: flex;
  align-items: stretch; /* Make both columns equal height */
  min-height: 400px;    /* Adjust as needed */
}

.flex-box.left-box,
.flex-box.right-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 32px;
  background: transparent;
}

/* Make both left and right boxes take up equal space */
.flex-box {
  flex: 1; 
  display: flex;
  flex-direction: column;
  gap: 20px; /* Space between the items inside the columns */
}
.flex-box.left-box {
  border-right: 1px solid #eee;
  gap:10px; /* More space for left box content */
}

/* --- Internal Box Elements --- */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.icon-circle {
  width: 65px;
  height: 65px;
  min-width: 65px;
  background-color: #34aadc; 
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.icon-circle svg {
  width: 30px;
  height: 30px;
}

.feature-content {
    /* padding: 40px 0; */
    /* gap: 0px !important; */
    /* justify-content: center; */
  flex: 1;
}

/* --- Typography --- */
.heading-orange {
  font-family: 'Oswald', sans-serif; 
  color: #fc5c35; 
  margin: 0 0 8px 0;
  line-height: 1.2;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

h2.heading-orange { font-size: 24px; }
h3.heading-orange { font-size: 20px; margin-top: 8px; }

p { margin: 0; font-size: 14px; line-height: 1.5; color: #666; }

.feature-list {
  padding-left: 18px;
  margin: 15px 0 0 0;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

.feature-list li { 
    
    margin-bottom: 15px;
    width: 90%;
    font-size: 14px;

}

/* --- Image & Floating Shapes --- */
.hero-image-wrapper {
  width: 100%;
  position: relative;
  z-index: 1;
}

.runner-img {
  width: 500px;
  height: auto;
  display: block;
  clip-path: polygon(10% 0, 100% 15%, 85% 100%, 0 85%);
  object-fit: cover;
}

.floating-shape { position: absolute; z-index: 2; }
.shape-pink-tl { width: 45px; top: -30px; left: 30px; transform: rotate(-15deg); }
.shape-blue-tr { width: 35px; top: -10px; right: -20px; transform: rotate(10deg); }
.shape-blue-bl { width: 55px; bottom: -30px; left: 10px; }
.shape-pink-br { width: 25px; bottom: 10px; right: 50px; transform: rotate(25deg); }


/* --- Mobile Responsiveness --- */
@media (max-width: 850px) {
  /* Aligns the two boxes into a single column */
  .hydration-container {
    flex-direction: column;
    gap: 40px;
  }
  
  /* Reduces the 60px padding slightly for smaller screens to save space */
  .hydration-section {
   padding: 0;

  }

  .feature-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  h3.heading-orange {
    margin-top: 0;
  }

  .feature-list {
    text-align: center; 
    display: inline-block; 
  }
}




/* __________________promo_______ */

  /* --- DESKTOP STYLES --- */
  .promo-banner {
    width: 1280px;
    max-width: 100%;
    height: 328px;
    margin: 40px auto; 
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    box-sizing: border-box;
    /* Add your background image url() here */
    /* background: linear-gradient(to right, #f35b33, #dc1114);  */
    background: url(assets/girl_banner.png) no-repeat center center / cover;
    font-family: sans-serif;
  }

  .promo-content {
    width: 60%;
    position: relative;
    z-index: 2;
  }

  .promo-content h2 {
    color: #ffffff;
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    font-weight: 400;
    margin-top: 0;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .subscription-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 80%;
  }

  .form-group {
    width: 100%;
  }

  .form-group.row {
    display: flex;
    gap: 30px;
  }

  .subscription-form input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    color: #ffffff;
    font-size: 14px;
    padding: 5px 0 10px 0;
    outline: none;
  }

  .subscription-form input::placeholder {
    color: #ffffff;
    opacity: 0.9;
  }

  .subscription-form input:focus {
    border-bottom: 1px solid #ffffff;
  }

  .submit-btn {
    background-color: #ffffff;
    color: #666666;
    border: none;
    width: 96px;
    font-family: poppins, sans-serif;
    font-weight: 500;
    height: 47px;
    border-radius: 25px;
    /* padding: 12px 35px; */
    display: flex;
    align-items: center;
    justify-content: center;


    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 15px;
  }

  .submit-btn:hover {
    background-color: #f1f1f1;
  }

  /* Absolute positioning for desktop */
  .promo-image {
    position: absolute;
    bottom: -15px; 
    right: 240px; 
    z-index: 3;
  }

  .girl-img {
    width: 306px;

    height: 404px;
    /* width: auto; */
    display: block;
  }


  /* --- MOBILE STYLES --- */
  @media (max-width: 768px) {
       .hero-boxes {
            width: clamp(220px, 37vw, 380px);
            right: 4%;
            top: 133px;
    }

        .when-left p {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 360;
    width: 50%;
    margin: auto;
}
      .promo-banner {
        width: 400px;
        height: 600px;
        background: url(assets/girl_banner_mobile.png) no-repeat center center / cover;
      flex-direction: column;
      padding: 40px 20px 260px 20px; /* Increased bottom padding to fit the absolute image */
      text-align: center;
    }

    .promo-content {
      width: 100%;
    }

    .promo-content h2 {
      font-size: 22px;
      text-align: center;
      margin-bottom: 30px;
    }

    .subscription-form {
      width: 100%;
      align-items: center; /* Centers the button */
      gap: 30px; /* Slight increase for mobile breathing room */
    }

    .form-group.row {
      flex-direction: column; /* Stack Email and Mobile vertically */
      gap: 30px;
    }
    .form-group.row input::placeholder{
        font-family: poppins, sans-serif;
        font-weight: 400;
        font-size: 14px;
    }

    .subscription-form input {
      text-align: left; /* Keep input text starting from the left */
    }

    .submit-btn {
      align-self: center; /* Center the submit button */
      margin-top: 10px;
    }

    /* Shift absolute positioning to center bottom for mobile */
    .promo-image {
      right: auto;
    
      left: 40%;
      /* bottom: -20px; */
      transform: translateX(-50%);
      bottom: -60px; 
    }



    .hero-sun-wrapper {
    width: 263px;

    top: 59%;
    left: 202px;
  
}
    
    /* Optional: Slightly scale down image on very small screens to prevent horizontal overflow */
    .girl-img {
          width: 204px ;
      height: 270px ;
      max-height: 280px; 
    }
    .prod-name{
        white-space: nowrap;
    }
    .scale-wrapper{
        width: 100%;
        max-width: 400px;
        margin: 20px auto 0 auto;
    }
}


.heading {
      text-align: center;
      font-family: 'Oswald', sans-serif;
      font-size: clamp(22px, 4vw, 36px);
      font-weight: 800;
      color: #1a1a1a;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 32px;
    }

    .heading span {
      color: #e84118;
    }

    .cardTable {
      background: #ffffff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 14px 40px 10px #F94C1B2B;
      width: 100%;
      max-width: 1280px;
      padding: 10pX 40px;
      overflow: auto;
      margin:auto;
    }

    table {
        padding: 10px 40px;
      width: 100%;
      border-collapse: collapse;
      overflow-x: auto;
    }

    thead tr {
      background: #ffffff;
      border-bottom: 2px solid #f0ece6;
    }

    .col-label {
        text-align: left;
      width: 140px;
      min-width: 100px;
    }

    .header-icon {
      /* font-size: 42px; */
      /* height: 94px; */
      display: block;
      text-align: center;
      line-height: 1.1;
      margin-bottom: 6px;
    }
    .header-icon img {
        /* width: 42px; */
        height: 94px;
    }

    th.header-cell {
      padding: 18px 8px 16px;
      text-align: center;
      vertical-align: bottom;
    }

    .prod-name {
      font-family: 'Oswald', sans-serif;
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0%;
      letter-spacing: 1.2px;
      color: #493e34;
      text-transform: uppercase;
      display: block;
      text-align: center;
    }

    tbody tr {
      border-top: 1px solid #D6D19F;
    }

    tbody tr:nth-child(even) {
      /* background: #fdf9f5; */
    }

    .row-label {
      padding: 0 18px;
      vertical-align: top;
    }

    .sym {
      font-family: 'Oswald', sans-serif;
      font-size: 24px;
      font-weight: 400;
      color: #493e34;
      margin-top: 10px;
      line-height: 24px;
    }

    .name {
        font-family: 'Poppins', sans-serif;
      font-size: 16px;
      color: #493e34;
      font-weight: 400;
      letter-spacing: 0.4px;
    }

    td.data-row {
      text-align: center;
      padding: 10px 4px;
      vertical-align: top;
    }

    tr.body-row { height: 64px;
    align-items: center; }

    .pill {
      display: inline-block;
      border-radius: 10px;
      height: 36px;
      width: 100px;
    }

    /* Colors */
    .g  { background: #07ff01; border:1px solid #000; border-radius:10px }
    .y  { background: #faff02; border:1px solid #000; border-radius:10px}
    .o  { background: #ff6902; border:1px solid #000; border-radius:10px}
    .r  { background: #ef4433; border:1px solid #000; border-radius:10px}
    .lg { background: #d9fe01; border:1px solid #000; border-radius:10px}
    .s { background: #feae03; border:1px solid #000; border-radius:10px}
     .sl { background: #ffdb01; border:1px solid #000; border-radius:10px}
     .allc {background: linear-gradient(
        to right,
        #e63000,
        #f55a00,
        #ff8800,
        #ffbb00,
        #e8e800,
        #a8d400,
        #4dc800,
        #00bb00
      ); border:1px solid #000; }





.cardTable::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track (background) */
.cardTable::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Scrollbar thumb (moving part) */
.cardTable::-webkit-scrollbar-thumb {
  background: #F94C1B;
  border-radius: 10px;
  transition: background 0.3s ease;
}

    /* Logo SVG diamond placeholder */
    .diamond {
      width: 48px; height: 48px;
      margin: 0 auto 6px;
    }

     .scale-wrapper {
     display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    margin: 0 auto;
    text-align: center;
    width: 550px;
    /* max-width: 400px; */
    }
 
    .scale-label {
      font-size: 16px;
      font-weight: 400;
      color: #493e34;
      white-space: nowrap;
    }
    .colorp{
      font-size: 11px;
      font-weight: 400;
      color: #493e34;
      white-space: nowrap;
    }
 
    .scale-bar {
      width: 350px;
      height: 12px;
      border-radius: 100px;
      background: linear-gradient(
        to right,
        #e63000,
        #f55a00,
        #ff8800,
        #ffbb00,
        #e8e800,
        #a8d400,
        #4dc800,
        #00bb00
      );
    }


    
    @media (max-width:900px) {
    .swiper{
    min-height: 250px!important;
  }
  .watch-frame {
    width: 100%!important;
    height: 220px!important;
  }
}
.watch-frame {
  border-radius: 20px;
  overflow: hidden;
  height: 380px;
  background-size: cover;
  width: 600px;
}

.swiper {
  min-height: 400px;
  max-width: 1300px;
}
.swiper-pagination {
  transform: translateY(10px) !important;
}
.swiper-pagination-bullet-active {
  background-color: #f94c1b !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  display: none;
}

.swiper-button-prev {
  left: 22% !important;
}

.swiper-button-next {
  right: 21% !important;
}
.swiper-slide-prev .watch-frame {
  transform: translateX(100px) scale(0.8);
  opacity: 0.5;
}
.swiper-slide-next .watch-frame {
  transform: translateX(-100px) scale(0.8);
  opacity: 0.5;
}
.swiper-slide-next img,
.swiper-slide-prev img {
  display: none;
}

.swiper-slide-active {
  margin-left: 1%;
}