@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100;0,9..40,200;0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;0,9..40,900;0,9..40,1000;1,9..40,100;1,9..40,200;1,9..40,300;1,9..40,400;1,9..40,500;1,9..40,600;1,9..40,700;1,9..40,800;1,9..40,900;1,9..40,1000&display=swap");

@font-face {
    font-family: "rechargebold";
    src: url("fonts/recharge_bd-webfont.eot");
    src: url("fonts/recharge_bd-webfont.eot?#iefix") format("embedded-opentype"),
        url("fonts/recharge_bd-webfont.woff2") format("woff2"),
        url("fonts/recharge_bd-webfont.woff") format("woff"),
        url("fonts/recharge_bd-webfont.ttf") format("truetype"),
        url("fonts/recharge_bd-webfont.svg#rechargebold") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* font-family: 'DM Sans', sans-serif; */

/* body,
html {
    overflow-x: hidden;
}  */
body,
html {
    width: 100%;
    /* ✅ correct unit */
    /* overflow-x: hidden; */
}

/* 
:root {

    --dm-sans: 'DM Sans', sans-serif;
    --rechargebold: 'rechargebold';
    --goldColor: #F7D35D;
    --bodyBG: #04202E;
    --liteBlue: #5088A4;
    --whiteColor: #fff;
    --darkBlueBg: #091F2C;
    --blueborder: #09384F;
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--dm-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100%;
    font-weight: normal;
    font-style: normal;
    color: var(--whiteColor);
    font-size: 20px;
    line-height: 1.4;
    background-color: var(--bodyBG);
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
} */

:root {
    --dm-sans: "DM Sans", sans-serif;
    --rechargebold: "rechargebold";
    --goldColor: #f7d35d;
    --bodyBG: #021c25;
    --header: #04202e;
    --liteBlue: #5088a4;
    --whiteColor: #fff;
    --darkBlueBg: #091f2c;
    --blueborder: #09384f;
    --lightyellow: #f2d888;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--dm-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw;
    font-weight: normal;
    font-style: normal;
    color: var(--whiteColor);
    font-size: 20px;
    line-height: 1.4;
    background-color: var(--bodyBG);
    overflow-x: hidden;
    /* prevent horizontal scroll */
}

b,
strong {
    font-weight: 700;
}

p {
    margin: 0 0 22px 0;
}

p:last-child {
    margin-bottom: 0;
}

/* HEADER */
/* HEADER (only navbar, no logo) */
/* Header container */
header {
    position: fixed;
    width: 45%;
    right: 0;
    /* remove the small gap on the right */
    display: flex;
    align-items: center;
    background: var(--header);
    padding: 20px 0 20px 20px;
    border-bottom-left-radius: 50px;
    z-index: 10;
    overflow-x: hidden;
    transition: box-shadow 0.3s ease;
    /* filter: drop-shadow(0 15px 30px rgba(13, 13, 13, 0.4)) */
}

header.scrolled {
    box-shadow: 0px 20px 10px rgba(0, 0, 0, 0.3);
    /* filter: drop-shadow(0px 20px 10px rgba(0, 0, 0, 0.3)); */
}

/* Navbar links */
header nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav ul li a {
    position: relative;
    text-decoration: none;
    color: var(--whiteColor);
    font-family: var(--rechargebold);
    font-weight: 700;
    /* font-size: 20px; */
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    font-size: clamp(13px, 1.4vw, 28px);
    padding-bottom: 5px;
    /* adds space for underline */
}

/* Underline animation */
header nav ul li a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: var(--goldColor);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

/* When hovered OR active → show line */
header nav ul li a:hover::after,
header nav ul li a.active::after {
    width: 60%;
}

/* ===========================================================
   🔹 UNIVERSAL CENTER CONTAINER for all main sections
   (except header, hero, and footer)
   =========================================================== */
.merch-section,
.fanny-pack-section,
.foam-roller-section,
.category-section,
.heading,
.contact-img,
.gradient-box,
.gradient-overlay,
.cons,
.pros,
.find-section,
.update-section {
    max-width: 2040px;
    /* Centered content width cap */
    margin: 0 auto;
    /* Centers horizontally */
    box-sizing: border-box;
}

/* Optional: add a slightly smaller container for mobile screens */
@media (max-width: 1600px) {
    .merch-section,
    .fanny-pack-section,
    .foam-roller-section,
    .category-section,
    .heading,
    .contact-img,
    .gradient-box,
    .gradient-overlay,
    .cons,
    .pros,
    .find-section,
    .update-section {
        max-width: 100%;
        padding-left: 1px;
        padding-right: 1px;
    }
}

/* HERO SECTION */
.hero {
    display: flex;
    position: relative;
    height: 110vh;
    width: 100%;
    overflow: hidden;
}

/* Left side - Trainers image */
.hero .left {
    flex: 2;
    height: 90%;
    width: 100%;
    background: url("/frontend_assets2/images/Landing.png") left top/contain
        no-repeat;
    position: relative;
    z-index: 1;
}

/* Right side - Blue shape with text */
.hero .right {
    background: url("/frontend_assets2/images/LandingStyle1.png") center
        center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 45%;
    z-index: 3;
    background-size: auto 105%;
    height: 100%;
}

/* Logo inside hero (over trainer image) */
.hero .logo {
    position: absolute;
    top: 40px;
    left: 60px;
    z-index: 5;
}

.hero .logo img {
    width: 100px;
    height: auto;
}

/* Content (right text) */
.hero .content {
    padding-left: 115px;
    padding-right: 75px;
    text-align: left;
    z-index: 4;
    position: relative;
}

.hero h2 {
    font-family: var(--rechargebold);
    font-size: 50px;
    font-weight: 700;
    color: var(--lightyellow);
    margin-bottom: 2rem;
}

.hero p {
    font-family: var(--dm-sans);
    font-size: 18px;
    margin-right: 30px;
    margin-bottom: 2rem;
    line-height: 1.5;
    margin-top: 2rem;
}

.hero .right p:nth-of-type(1) {
    font-weight: 500 !important;
}

.hero .right p:nth-of-type(2) {
    font-weight: 700 !important;
}

.app-buttons {
    display: flex;
    margin-bottom: 40px;
    flex-direction: row;
    /* stack vertically */
    align-items: flex-start;
    /* align to the left (or use center if you want center alignment) */
    gap: 10px;
    /* space between the buttons */
}

.app-buttons img {
    background-color: black;
    padding: 10px;
    width: 174px;
    height: 58px;
    margin-right: 50px;
    transition: transform 0.3s;
    border-radius: 5px;
    border: 1px solid white;
    margin-bottom: 52px;
}

.app-buttons img:hover {
    transform: scale(1.05);
}

/* SOCIAL (independent from .content styling) */
.social {
    display: flex;
    position: absolute;
    bottom: 15px;
    right: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 5;
}

.social p {
    font-family: var(--rechargebold);
    font-size: 14px;
    letter-spacing: 1px;
    margin-top: 20px;
    margin-bottom: 8px;
    color: var(--whiteColor);
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social a img {
    height: 45px;
    width: 45px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.social a img:hover {
    transform: scale(1.1);
    /* filter: brightness(0) saturate(100%) invert(83%) sepia(61%) saturate(1161%) hue-rotate(2deg) brightness(102%) contrast(104%); */
}

/* Responsive */

/* ===================== */
/* FITIZEN MERCH SECTION */
/* ===================== */
/* MAIN SECTION */
/* === BASE DESKTOP LAYOUT (unchanged) === */
.merch-section {
    padding-left: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
    overflow: visible;
}

.text-content,
.paragraph-content,
.left {
    position: relative;
    z-index: 2;
}

/* Heading */
.text-content h1 {
    padding-top: 40px;
    padding-right: 20px;
    font-family: var(--rechargebold);
    font-size: 52px;
    color: var(--lightyellow);
    line-height: 1.15;
    /* margin-bottom: 25px; */
}

.paragraph-content p {
    font-family: var(--dm-sans);
    font-size: 20px;
    font-weight: 500;
    color: var(--whiteColor);
    line-height: 1.6;
    max-width: 800px;
}

/* Columns */
.content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* prevent wrapping at 1024px */
    gap: 40px;
}

/* LEFT SIDE */
.left {
    flex: 1;
    min-width: 350px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: var(--whiteColor);
    font-family: var(--dm-sans);
    font-weight: 700;
}

.features img {
    width: 30px;
    height: 30px;
}

/* CTA */
.cta {
    display: flex;
    align-items: center;
    gap: 23px;
    margin-top: 20px;
}

.buy-btn {
    background: var(--lightyellow);
    color: #021c25;
    padding: 8px 18px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--rechargebold);
    font-size: 12px;
    transition: all 0.3s ease;
}

.buy-btn:hover {
    background: #fbe57d;
    transform: translateY(-2px);
}

.usa-only {
    font-size: 14px;
    color: var(--whiteColor);
    font-family: var(--rechargebold);
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 8px;
}

.usa-only img {
    width: 50px;
}

/* RIGHT SIDE (Rollers) */
.right {
    padding-right: 60px;
    padding-bottom: 10px;
    display: flex;
    justify-content: flex-end;
    /* right align for 1024px */
    flex: 1.2;
}

.rollers {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    /* right-aligned layout */
    gap: 40px;
    flex-wrap: nowrap;
    position: relative;
    margin-top: -160px;
    /* smaller offset for tablets */
    z-index: 1;
}

.rollers a {
    text-decoration: none;
    color: inherit;
}

.rollers .roller {
    position: relative;
    text-align: center;
}

.rollers img {
    width: 80px;
    display: block;
    transition: all 0.3s ease;
}

.rollers .roller:hover img {
    transform: scale(1.05);
}

.rollers p {
    position: absolute;
    bottom: 1px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--rechargebold);
    color: var(--lightyellow);
    white-space: nowrap;
    letter-spacing: 1px;
    font-size: 13px;
}

/* ✅ TABLET LANDSCAPE (769px–1024px) — Shrink rollers but keep on right */
@media (max-width: 1024px) and (min-width: 769px) {
    .content-row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: flex-start;
        gap: 30px;
    }

    .text-content h1 {
        font-size: 44px;
    }

    .paragraph-content p {
        font-size: 18px;
        /* max-width: 700px; */
    }

    .features li {
        font-size: 16px;
    }

    .right {
        padding-right: 30px;
        justify-content: flex-end;
    }

    .rollers {
        gap: 25px;
        margin-top: -120px;
    }

    .rollers img {
        width: 65px;
        /* smaller size */
    }

    .rollers p {
        font-size: 11px;
    }

    .cta {
        gap: 15px;
    }
}

/* ✅ MOBILE (<= 768px) — Stacked layout */
@media (max-width: 940px) {
    .merch-section {
        padding: 20px;
        display: flex;
        flex-direction: column;
    }

    .content-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        display: contents !important;
        /* removes container barrier */
    }

    /* FORCE ORDER */
    .text-content {
        order: 0 !important;
        /* width: 100%; */
    }

    .right {
        order: 1 !important;
        /* width: 100%; */
    }

    .paragraph-content {
        order: 2 !important;
        width: 100%;
    }

    .left {
        order: 3 !important;
        /* width: 100%; */
    }

    /* 4 features → 2x2 grid */
    .features {
        display: grid;
        grid-template-columns: repeat(2, minmax(160px, 1fr));
        justify-items: start;
        gap: 15px 35px;
        /* max-width: 400px; */
        margin: 0 auto 50px auto;
    }

    .features li {
        font-size: 16px;
    }

    .features img {
        width: 26px;
        height: 26px;
    }

    .cta {
        justify-content: center;
        margin-top: 25px;
    }

    /* Rollers move below, centered */
    .right {
        width: 100vw;
        padding: 0;
        justify-content: center;
        margin-top: -100px;
    }


    .rollers img {
        width: 75px;
    }

    .rollers p {
        font-size: 12px;
    }

    .text-content h1 {
        font-size: 40px;
        text-align: center;
    }

    .paragraph-content p {
        font-size: 18px;
        text-align: center;
    }
}

@media (max-width: 940px) {
    .merch-section {
        display: flex;
        flex-direction: column;
    }

    .content-row {
        display: contents !important;
        /* removes container barrier */
    }

    /* FORCE ORDER */
    .text-content {
        order: 0 !important;
        width: 100%;
    }

    .right {
        order: 1 !important;
        width: 100%;
    }

    .paragraph-content {
        order: 2 !important;
        width: 100%;
    }

    .left {
        order: 3 !important;
        width: 100%;
    }

    /* Center all items cleanly */
    .text-content,
    .right,
    .left,
    .paragraph-content {
        text-align: center;
        /* margin-bottom: 25px; */
    }

    .rollers {
        justify-content: center !important;
        gap: 35px;
        margin-top: 20px;
    }

    .features {
        display: grid;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        justify-items: start;
        gap: 12px 25px;
        margin: 0 auto 25px auto;
    }

    .cta {
        justify-content: center;
    }
}

/* fanny-pack */

.fanny-pack-section {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0;
    /* no extra top space */
    padding: 40px 10px;
    color: #f4d35e;
    font-family: var(--dm-sans);
    overflow: hidden;
}

/* Left Text Section */
.fanny-pack-section .content {
    max-width: 600px;
    position: relative;
    z-index: 2;
    margin-right: -120px;
    /* overlap look */
}

.fanny-pack-section h1 {
    font-family: var(--rechargebold);
    font-size: 32px;
    color: var(--lightyellow);
    margin-bottom: 20px;
}

.fanny-pack-section p {
    color: var(--whiteColor);
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 410px;
}

/* Right Image */
.image-container {
    position: relative;
    z-index: 1;
}

.image-container img {
    width: 900px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.4));
    transform: translateY(-30px);
}

/* ======================================= */
/* 🧩 RESPONSIVE STYLES */
/* ======================================= */

/* Between 1024px and 1366px — slightly smaller layout */
@media (max-width: 1366px) {
    .fanny-pack-section {
        padding: 30px 40px;
    }

    .fanny-pack-section .content {
        margin-right: -80px;
    }

    .image-container img {
        width: 750px;
        transform: translateX(-50px);
    }

    .fanny-pack-section h1 {
        font-size: 28px;
    }

    .fanny-pack-section p {
        font-size: 17px;
    }
}

/* ✅ Below 1024px → GRID for features + stacked layout */
@media (max-width: 1024px) {
    .fanny-pack-section {
        flex-direction: row;
        /* text-align: center; */
        padding: 40px 20px;
    }

    .fanny-pack-section .content {
        margin: 0 auto;
        max-width: 90%;
    }

    .fanny-pack-section h1 {
        font-size: 28px;
    }

    .fanny-pack-section p {
        max-width: 600px;
        margin: 0 auto 25px auto;
    }

    .image-container {
        margin-top: 40px;
    }

    .image-container img {
        width: 580px;
        transform: none;
        padding-left: 0;
    }

    .buy-btn {
        padding: 10px 3px;
    }
}

/* ✅ Below 768px — single column + smaller image */
@media (max-width: 940px) {
    .fanny-pack-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .fanny-pack-section h1 {
        font-size: 24px;
    }

    .image-container img {
        width: 500px;
        margin-top: -50px;
    }

    .buy-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
}

.foam-roller-section {
    text-align: center;
    padding-top: 60px;
    /* padding-bottom:60px; */
    font-family: "DM Sans", sans-serif;
    color: #fff;
    overflow: hidden;
}

/* --- Roller Row --- */
.roller-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* gap: 80px; */
    margin-bottom: 60px;
    position: relative;
}

.rollerss {
    position: relative;
    width: 500px;
    height: 285px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Roller image */
.rollerss img {
    width: 250px;
    height: auto;
    position: relative;
    z-index: 3;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
}

.rollerss:first-child img {
    opacity: 0.8;
    padding-left: 20px;
}

.rollerss.center img {
    opacity: 1;
    transform: scale(1.05);
    /* make center pop slightly */
}

.rollerss:last-child img {
    opacity: 0.8;
    padding-right: 30px;
}

/* Background base */
.bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: linear-gradient(#f2d888 0%, #7b6319 100%);
    transition: all 0.3s ease;
}

/* Left roller background */
.left-bg {
    transform: rotate(7deg);
    left: 50px;
    opacity: 0.6;
    z-index: 1;
    /* behind center */
    transform-origin: top left;
}

/* Center roller background */
.center-bg {
    transform: rotate(0deg);
    top: 0;
    z-index: 3;
    /* topmost layer */
    opacity: 1;
    filter: brightness(1.15);
}

/* Right roller background */
.right-bg {
    transform: rotate(-7deg);
    right: 50px;
    opacity: 0.6;
    z-index: 1;
    /* behind center */
    transform-origin: top right;
}

.arrow-icons {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    justify-content: flex-end;
}

.arrows-icons img {
    width: 20px;
}

.arrows {
    background: none;
    /* no background */
    border: none;
    /* remove button border */
    outline: none;
    /* remove focus outline */
    padding: 0;
    font-size: 20px;
    color: var(--lightyellow);
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.2s;
}

.arrows img {
    width: 40px;
    /* yaha tu adjust kar sakti hai: 10px, 12px, 14px */
    height: auto;
    transition: transform 0.2s;
}

/* --- Bottom Text + Arrows --- */
.bottom-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 140px;
    flex-wrap: wrap;
}

.main-content h2 {
    color: var(--lightyellow);
    font-family: var(--rechargebold);
    padding-top: 20px;
    font-weight: 700;
    font-size: 26px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.main-content-description p {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--dm-sans);
    color: var(--whiteColor);
    line-height: 1.6;
}

/* ========================= */
/* RESPONSIVE FIXES BELOW   */
/* ========================= */

/* 🔹 Tablet (768px–1023px) */
@media (max-width: 1023px) {
    .roller-container {
        gap: 25px;
        margin-bottom: 40px;
    }

    .rollerss {
        width: 380px;
        height: 200px;
    }

    .rollerss img {
        width: 180px;
    }

    .left-bg {
        left: 40px;
        transform: rotate(768px);
    }

    .right-bg {
        right: 40px;
        transform: rotate(-7deg);
    }

    .bottom-section {
        gap: 100px;
    }

    .main-content h2 {
        font-size: 22px;
    }

    .main-content-description p {
        font-size: 16px;
    }
}

.category-section {
    position: relative;
    width: 100%;
    height: 100%;
}

.category-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Center content perfectly */
.category-content {
    position: absolute;
    top: 50%;
    left: 45%;
    /* padding-left: 78px; */
    transform: translate(-45%, -50%);
    color: #f6d97a;
    width: 100%;
    max-width: 1200px;
    /* text-align: center; */
    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
}

/* Heading */
.category-content h1 {
    font-size: 47px;
    font-weight: 700;
    margin-left: 10px;
    margin-bottom: 40px;
    max-width: 60%;
    color: var(--lightyellow);
    font-family: var(--rechargebold);
    text-align: center;
}

/* 9 per row automatically (18 = 2 rows) */
.category-icons {
    display: grid;
    grid-template-columns: repeat(9, 0.1fr);
    gap: 20px 0px;
    /* row-gap column-gap */
    justify-items: center;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin-left: 10%;
}

/* Circles */
.circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    /* background: #f6d97a; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* transition: all 0.3s ease; */
}

.circle img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.circle:hover {
    transform: scale(1.1);
    background: #ffd84c;
}

/* @media (max-width: 1024px) {
  .category-icons {
    grid-template-columns: repeat(5, 1fr);

  }

  .category-content h1 {
    max-width: 100%;
    margin-left: 50px;
  }

  .circle {
    width: 60px;
    height: 60px;
  }

} */

/* @media (max-width: 940px) {
  .category-icons {
    grid-template-columns: repeat(6, 1fr);
  }

  .circle {
    width: 55px;
    height: 55px;

  }

  .category-content h1 {
    font-size: 1.8rem;
    max-width: 100%;
  }
} */

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

.heading h1 {
    font-size: 50px;
    font-weight: 500px;
    padding-top: 10px;
    padding-bottom: 20px;
    font-family: var(--rechargebold);
    color: var(--lightyellow);
}

.pros h1 {
    font-size: 50px;
    font-weight: 500px;
    padding-top: 10px;
    padding-bottom: 20px;
    font-family: var(--rechargebold);
    color: var(--lightyellow);
    text-align: center;
}

.cons {
    /* position: relative; */
    width: 100%;
    /* height: 520px; */
    overflow: hidden;
}

.cons-bg {
    width: 100%;
    object-fit: cover;
    display: block;
}

.pros {
    /* position: relative; */
    width: 100%;
    /* height: 520px; */
    margin-top: -5px;
    overflow: hidden;
}

.pros-bg {
    width: 100%;
    object-fit: cover;
    display: block;
}

.gradient-overlay {
    width: 100%;
    height: 50px;
    margin-top: -3px;
    background: linear-gradient(180deg, #021c25 0%, #010101 100%);
}

.gradient-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* height: 50px;  */
    /* margin-top: -3px; */
    background: linear-gradient(180deg, #010101 0%, #021c25 100%);
}

.gradient-box p {
    font-size: 50px;
    font-weight: bold;
    font-family: var(--rechargebold);
    padding-top: 20px;
}

/* Overlay (icons + text) */
.cons-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    /* align-items: center; */
    justify-content: flex-end;
    gap: 120px;
    width: 100%;
    padding: 0 60px;
    flex-wrap: nowrap;
}

/* Each item */
.cons-item {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

/* Cross icons */
.cross {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

/* Text */
.cons-item p {
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
}

/* app */

.fitness-profile {
    display: flex;
    gap: 50px;
    /* justify-content: space-between; */
    align-items: center;
    padding-left: 80px;
    padding-right: 50px;
    padding-bottom: 50px;
    color: #f4d35e;
    font-family: "DM Sans", sans-serif;
    overflow: hidden;
}

.fitness-profile .content {
    /* max-width: 900px; */
    z-index: 2;
}

.fitness-profile h1 {
    font-family: var(--rechargebold);
    font-size: 50px;
    color: var(--lightyellow);
    margin-bottom: 25px;
}

.fitness-profile p {
    max-width: 700px;
    color: var(--whiteColor);
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.points {
    display: grid;
    grid-template-columns: 1.5fr 1.3fr;
    gap: 30px 40px;
}

.point {
    display: flex;
    align-items: center;
    color: var(--whiteColor);
    font-size: 18px;
    font-family: var(--dm-sans);
    gap: 15px;
    font-weight: 700;
}

.point img {
    width: 28px;
    height: 28px;
    filter: brightness(0) saturate(100%) invert(87%) sepia(25%) saturate(633%)
        hue-rotate(7deg) brightness(103%) contrast(94%);
}

.app-image-container {
    position: relative;
    z-index: 1;
}

.app-image-container img {
    width: 550px;
    /* height: 90vh; */
    /* transform: rotate(8deg); */
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.find-section {
    display: flex;
    padding-top: 70px;
    padding-left: 100px;
    padding-bottom: 50px;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    /* gap: 20px; */
}

/* --- LEFT CONTENT --- */
.find-section .content {
    padding-top: 70px;
    z-index: 2;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 12px;
    /* width: 100px;  */
}

.title-with-icon img {
    width: 40px;
    height: 40px;
}

.find-section h1 {
    font-family: var(--rechargebold);
    font-size: 50px;
    padding-top: 9px;
    color: var(--lightyellow);
    line-height: 1.2;
    letter-spacing: 1.5px;
}

.find-section h2 {
    color: var(--lightyellow);
    font-size: 20px;
    padding-top: 22px;
    font-family: var(--rechargebold);
    font-weight: 600;
    margin-top: 8px;
    letter-spacing: 1.5px;
}

.find-section p {
    color: var(--whiteColor);
    font-size: 20px;
    font-weight: 500;
    font-family: var(--dm-sans);
    line-height: 1.6;
    margin-top: 10px;
}

/* --- PHONES SECTION --- */
.phones {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.phone {
    position: relative;
    transition: transform 0.3s ease;
}

.phone img {
    width: 350px;
    height: 85%;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
}

/* .phone:not(:first-child) {
  margin-left: -40px;
} */

.phone:nth-child(2) {
    margin-left: -40px;
    z-index: 3;
}

.phone:nth-child(1) {
    z-index: 1;
}

.phone:nth-child(3) {
    margin-left: -40px;
    z-index: 2;
}

.phone:hover {
    transform: scale(1.01);
    z-index: 4;
}

/* --- LABEL ABOVE EACH PHONE --- */
.phone-label {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    font-weight: 700;
    color: var(--whiteColor);
    font-family: var(--rechargebold);
    letter-spacing: 1px;
}

.phone-calendar {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    margin-right: 60px;
}

.phone-calendar img {
    width: 350px;
    height: 85%;
    border-radius: 28px;
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.4));
}

.phone-calendar:hover {
    transform: scale(1.01);
    z-index: 4;
}

/* === BASE (Your current styles remain same) === */

/* 🌐 1440px ↓ */
@media (max-width: 1440px) {
    .phone img {
        width: 331px;
        height: 85%;
    }

    .phone-label {
        font-size: 18px;
    }

    .phone-calendar img {
        width: 350px;
        height: 66%;
    }
}

/* 💻 1024px ↓  (Tablet Landscape) */
@media (max-width: 1280px) {
    .find-section {
        flex-direction: row;
        text-align: center;
        padding: 40px 20px;
    }

    .find-section .content {
        padding-top: 30px;
    }

    .title-with-icon {
        justify-content: center;
        align-items: center;
        /* margin-left: 350px; */
    }

    .phones {
        margin-top: 40px;
        flex-direction: row;
        gap: 10px;
    }

    .phone img {
        width: 260px !important;
        height: 66%;
    }

    .phone-label {
        font-size: 15px;
        top: -25px;
    }

    .find-section h1 {
        font-size: 50px;
    }

    .phone-calendar img {
        width: 260px !important;
    }

    .find-section p {
        font-size: 22px;
    }
}

@media (max-width: 1100px) {
    .find-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
}
/* 📱 768px ↓ (Tablet Portrait / Mobile Large) */
@media (max-width: 940px) {
    .find-section {
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .find-section .content {
        text-align: center;
        padding-top: 0;
    }

    .find-section h1 {
        font-size: 36px;
        padding-right: 20px;
    }

    .title-with-icon {
        justify-content: center;
        align-items: center;
        /* margin-left: 250px; */
    }

    .find-section h2 {
        font-size: 20px;
    }

    .find-section p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .phones {
        /* flex-direction: column; */
        align-items: center;
        margin-top: 40px;
    }

    .phone {
        margin: 0;
    }

    .phone img {
        width: 280px;
        /* height: auto; */
    }

    .phone-calendar {
        margin-right: 10px;
    }

    .phone-calendar img {
        width: 280px;
    }

    .phone-label {
        font-size: 15px;
        top: -30px;
    }
}

.update-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 60px;
    padding-right: 20px;
    padding-top: 100px;
    overflow: hidden;
}

.update-content {
    flex: 1;
    color: var(--whiteColor);
    /* max-width: 45%; */
    /* text-align: right; */
    padding-top: 100px;
}

.update-content h2 {
    font-family: var(--rechargebold);
    color: var(--lightyellow);
    font-size: 45px;
    margin-bottom: 20px;
}

.update-content h3 {
    color: var(--lightyellow);
    font-family: var(--rechargebold);
    font-size: 20px;
    font-weight: 700;
}

.update-content p {
    font-family: var(--dm-sans);
    font-size: 20px;
    line-height: 1.8;
    font-weight: 700;
    color: var(--whiteColor);
    margin-bottom: 30px;
    padding-right: 10%;
    max-height: 130px;
    /* max-width: 400px; */
    /* align-items: end; */
}

.fade-out {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.3s ease-out;
}

.arrow-icons {
    display: flex;
    gap: 20px;
    justify-content: start;
}

.arrow-icons img {
    width: 50px;
    margin-right: -10px;
}

.arrow {
    background: none;
    /* no background */
    border: none;
    /* remove button border */
    outline: none;
    /* remove focus outline */
    padding: 0;
    font-size: 28px;
    color: var(--lightyellow);
    background-color: transparent;
    cursor: pointer;
    transition: transform 0.2s;
}

.update-phones {
    /* flex: 1.2; */
    display: flex;
    justify-content: center;
    align-items: flex-end;
    /* gap: 20px; */
    position: relative;
    height: 80%;
}

.phone1 img {
    /* margin-left: 20px; */
    height: 85%;
    width: 340px;
    border-radius: 28px;
    transition: all 0.5s ease;
    /* 👈 smooth effect */

    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, 0.5));
}
.phone1 p {
    font-size: 20px;
    color: var(--whiteColor);
    font-family: var(--rechargebold);
    text-align: center;
    margin-bottom: 10px;
}
/* overlap effect */
.update-phones .phone1.left {
    transform: rotate(-10deg);
    margin-right: -100px;
    margin-bottom: 8px;
    opacity: 0.4;
    /* 👈 slightly faded */
}

.update-phones .center {
    z-index: 2;
    transform: scale(1.05);
    opacity: 1;
    /* 👈 slightly faded */
}

.update-phones .phone1.right {
    transform: rotate(10deg);
    margin-left: -90px;
    margin-bottom: -28px;
    /* margin-bottom:6px; */
    opacity: 0.4;
    /* 👈 slightly faded */
}

/* ✨ Overlay for blur + dim effect */
.phone1::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    backdrop-filter: blur(2px);
    /* controls blur strength */
    /* background: rgba(0, 0, 0, 0.3);  */
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Left & right images show overlay */
.phone1.left::after,
.phone1.right::after {
    opacity: 0.5;
}

.contact-img {
    flex: 1;
}

.contact-img img {
    height: 95%;
    width: 100%;
}

.FannyPack {
    display: flex;
    justify-content: center;
    margin-top: -155px;
    margin-bottom: -80px;
}

.FannyPack img {
    height: 100%;
    width: 70%;
}

.footer-section {
    position: relative;
    text-align: center;
    color: #ffffff;
    /* padding: 80px 0 40px; */
    font-family: var(--dm-sans);
    overflow: hidden;
    z-index: 2;

    /* Main smooth gradient background (as seen in Figma) */
    /* background: linear-gradient(
    to bottom,
    #010101 10%,
    #04202E 80%,
    #032b3f 100%
  ); */
}

/* Top fade overlay for smooth transition from section above */
.footer-section::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 120px;
    /* background: linear-gradient(
    to bottom,
    rgba(2, 28, 37, 0) 0%,
    #021C25 100%
  ); */
    z-index: 1;
}

.footer-section p {
    font-size: 30px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: var(--whiteColor);
    font-family: var(--dm-sans);
}

/* “Get our special offers” text */
.footer-section h2 {
    font-family: var(--rechargebold);
    color: #f2d888;
    /* Gold */
    font-size: 28px;
    letter-spacing: 1px;
    margin-top: 40px;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    padding: 12px;
}

/* Email input + send button wrapper */
/* .subscribe-box {
  display: inline-flex;
  align-items: center;
  background-color: #021C25;
  border: 1px solid #F2D888;
  border-radius: 6px;
  overflow: hidden;
  padding: 2px;
  position: relative;
  z-index: 2;
}

.subscribe-box input {
  background: transparent;
  border: none;
  padding: 12px 15px;
  color: #FFFFFF;
  width: 260px;
  font-size: 15px;
  outline: none;
}

.subscribe-box button {
  background-color: #F2D888;
  color: #010101;
  font-weight: bold;
  padding: 12px 18px;
  border: none;
  cursor: pointer;
  font-family: var(--rechargebold);
  transition: all 0.3s ease;
}

.subscribe-box button:hover {
  background-color: #FFFFFF;
  color: #010101;
} */

.email-box {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #06293b;
    /* dark blue tone from your palette */
    border-radius: 8px;
    overflow: hidden;
    width: 400px;
    /* padding-left: 10px; */
    /* height: 50px; */
    margin: 20px auto;
    /* box-shadow: 0 0 12px rgba(242, 216, 136, 0.1); */
}

.email-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--whiteColor);
    font-size: 20px;
    padding: 8px;
    /* padding: 0 5px; */
    font-family: var(--dm-sans);
}

.email-box input::placeholder {
    color: var(--whiteColor);
    font-family: var(--dm-sans);
}

.email-box button {
    background-color: #06293b;
    border: none;
    outline: none;
    padding-right: 10px;
    height: 100%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.email-box button img {
    width: 20px;
    height: 22px;
}

/* Social media icons area */
.social-media {
    margin-top: 35px;
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.social-media img {
    width: 50px;
}

.social-media img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

.footer-bottom {
    background-color: #04202e;
    margin-top: 50px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    padding: 5px;
    text-align: center;
}

.footer-bottom p {
    font-family: var(--dm-sans);
    font-size: 20px;
    color: var(--whiteColor);
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    /* uniform spacing between all elements */
}

.footer-bottom .brand {
    font-family: var(--dm-sans);
    color: var(--lightyellow);
    font-weight: 600;
}

.footer-bottom a {
    font-family: var(--dm-sans);
    color: var(--lightyellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom .separator {
    color: var(--whiteColor);
    opacity: 0.8;
    font-weight: 400;
}

.mobile-profile-wrapper {
    position: relative;
    width: 100%;
    margin: 0 auto 40px;
    /* center + thoda niche space */
}

.mobile-profile-wrapper .contact-img img {
    width: 100%;
    display: block;
}

/* Buttons overlap at bottom of image */
.mobile-profile-wrapper .mobile-buttons {
    position: absolute;
    top: 50px;
    /* kitna overlap chahiye uske hisaab se adjust kar sakti ho */
    left: 5%;
    display: flex;
    z-index: 5;
    flex-direction: column;
    gap: 10px;
}

.mobile-profile-wrapper .mobile-buttons img {
    height: 30px;
    width: 90px;
    background-color: black;
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 5px;
    padding-bottom: 5px;
    border-radius: 5px;
    border: 1px solid white;
}

/* ==========================================
   RESPONSIVE (TABLET & SMALL DESKTOP)
   ========================================== */
@media (max-width: 1400px) {
    header nav ul li a {
        position: relative;
        text-decoration: none;
        color: var(--whiteColor);
        font-family: var(--rechargebold);
        font-weight: 600;
        font-size: clamp(13px, 1.3vw, 24px);
        /* font-size: 13px; */
        transition: color 0.3s ease;
        padding-bottom: 5px;
    }

    /* .hero .left {
    height:100%
   }
  .hero .right{
   padding-top: 120px;
   align-items: flex-start;
   height:90%
  } */

    contact-img img {
        height: 85%;
        width: 100%;
    }

    .social {
        position: absolute;
        /* bottom: 50px; */
        right: 20px;
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        z-index: 5;
    }

    .merch-section {
        padding-top: 0px;
    }

    /* ---------- HERO SECTION ---------- */
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        /* padding: 80px 20px; */
    }

    .hero .text-content,
    .paragraph-content {
        max-width: 750px;
    }

    .hero img {
        width: 90%;
        height: auto;
    }

    /* ---------- FOAM ROLLER SECTION ---------- */
    .foam-roller-section {
        padding: 80px 40px;
    }

    .foam-roller-section .foam-slider img {
        width: 80%;
    }

    .foam-roller-section .text-content,
    .paragraph-content {
        max-width: 750px;
    }

    /* ---------- FITNESS PROFILE SECTION ---------- */
    .fitness-profile-section {
        flex-direction: column;
        gap: 40px;
        padding: 80px 30px;
    }

    .fitness-profile-section .left,
    .fitness-profile-section .right {
        width: 100%;
        text-align: center;
    }

    /* ---------- UPDATE SECTION ---------- */

    .update-section {
        flex-direction: row;
        gap: 40px;
        padding: 80px 0px;
    }

    .phone1 img {
        /* margin-left: 20px; */
        height: 85%;
        width: 280px;
    }

    .update-phones .phone1.left {
        transform: rotate(-10deg);
        margin-right: -130px;
        margin-bottom: -14px;
        opacity: 0.9;
    }

    .update-section .text-content,
    .paragraph-content {
        text-align: center;
    }

    /* .update-section img {
    width: 75%;
  } */

    /* ---------- CONTACT / IMAGE SECTION ---------- */
    .contact-section img {
        width: 100%;
        height: auto;
    }

    /* ---------- FOOTER ---------- */
    .footer-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        /* padding: 40px 20px; */
    }

    .footer-section .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .update-content {
        padding-left: 8%;
    }
}

/* 🌍 4K & Large Desktop (≥1600px) */
@media (min-width: 1600px) {
    .container,
    body {
        /* max-width: 1600px; */
        margin: 0 auto;
    }

    .hero .content {
        padding-left: 180px;
        padding-right: 120px;
    }

    .text-content h1 {
        font-size: 58px;
    }
}

/* 💻 Laptop & Mid Desktop (≤1366px) */
@media (max-width: 1366px) {
    /* header {
    width: 55%;
  } */
    .hero h2 {
        font-size: 44px;
    }

    .hero p {
        font-size: 17px;
    }

    .fanny-pack-section h1 {
        font-size: 28px;
    }

    .find-section h1 {
        font-size: 42px;
    }

    .foam-roller-section .main-content h2 {
        font-size: 24px;
    }

    .update-content p {
        font-size: 18px;
    }
}

@media (max-width: 1200px) {
    .update-section {
        flex-direction: column;
        gap: 40px;
        padding: 80px 20px;
    }

    .update-content {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 5px;
        padding-left: 1px;
    }

    .update-content p {
        padding-right: 1px;
        max-width: 1000px;
        font-size: 22px;
    }

    .update-content h2 {
        font-size: 55px !important;
    }

    .update-content h3 {
        font-size: 25px;
    }

    .update-phones {
        order: 1;
    }
}

/* 📱 Tablet Landscape (≤1024px) */
@media (max-width: 1024px) {
    /* header {
    width: 45%;
    border-bottom-left-radius: 30px;
  } */

    nav ul {
        gap: 15px;
    }

    /* .hero {
    flex-direction: row;
    text-align: center;
    height: auto;
  } */

    /* .hero .right {
    position: static;
    width: 100%;
    height: auto;
    padding: 60px 20px;
    background-size: cover;
  }

  .hero .left {
    background-position: center top;
    background-size: contain;
    height: 400px;
  } */

    .social {
        /* position: static; */
        align-items: center;
        justify-content: center;
        bottom: 0px;
    }

    .category-content h1 {
        font-size: 36px;
        text-align: center;
    }

    /* .update-phones img {
    height: 70vh;
  } */
}

/* 📱 Tablet + Mobile Large (≤1024px, ≤768px SAME layout) */
@media (max-width: 1024px) {
    .update-phones {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
        height: auto;
        padding: 20px 0;
        overflow: hidden;
        transform: translateX(0);
    }

    .update-phones .phone1 img {
        width: 300px;
        height: auto;
    }

    .update-phones .phone1.left {
        transform: rotate(-9deg);
        margin-right: -90px;
        opacity: 0.75;
    }

    .update-phones .center {
        transform: scale(1.08);
        z-index: 2;
    }

    .update-phones .phone1.right {
        transform: rotate(9deg);
        margin-left: -60px;
        opacity: 0.75;
    }

    .phone1.left::after,
    .phone1.right::after {
        opacity: 0.35;
    }
}

/* 📲 Mobile Large (≤768px) */
@media (max-width: 1023px) {
    /* header {
    width: 45vw; 
    padding: 15px 0;
    justify-content: center;
    overflow-x: hidden;
  } */

    /* header nav ul {
    gap: 35px;
  }

  header nav ul li a {
    font-size: 22px;
  } */

    header {
        position: fixed;
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        padding: 15px 10px !important;
        border-bottom-left-radius: 0 !important;
        overflow: hidden;
        justify-content: center;
    }

    header nav ul {
        justify-content: center;
        gap: 80px !important;
    }

    header nav ul li a {
        font-size: clamp(16px, 1.4vw, 28px) !important;
        letter-spacing: 0.3px;
        padding-bottom: 3px;
    }

    .hero {
        flex-direction: column;
        align-items: center;
        padding-top: 60px;

        /* height: auto; */
    }

    .hero .logo {
        position: absolute;
        top: 20px;
        left: 30px;
        z-index: 5;
    }

    .hero h2 {
        padding-left: 10px;
        font-size: 32px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 15px;
        padding-left: 10px;
        padding-right: 10px;
    }

    .social {
        /* position: static; */
        align-items: center;
        justify-content: center;
        top: 90%;
        /* margin-top: 20px; */
    }

    .app-buttons img {
        width: 125px;
        height: 48px;
    }

    .social a img {
        height: 30px;
        width: 30px;
    }

    .social p {
        font-size: 12px;
    }

    .text-content h1 {
        font-size: 32px;
    }

    /* .fanny-pack-section img {
    width: 100%;
    height: auto;
  } */

    .find-section h1 {
        font-size: 32px;
    }

    .find-section p {
        font-size: 16px;
    }

    .foam-roller-section .main-content h2 {
        font-size: 20px;
    }

    .update-section {
        /* flex-direction: column-reverse; */
        gap: 30px;
        text-align: center;
        overflow: hidden;
    }

    .footer-bottom p {
        font-size: 16px;
    }
}

@media (max-width: 940px) {
    .update-phones {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0px;
        height: auto;
        padding: 20px 0;
        overflow: hidden;
        transform: translateX(0);
        position: relative;
        order: 1;
         touch-action: pan-y;
    }

    /* ensure correct visual order: left, center, right */
    .update-phones .phone1.left {
        order: 1 !important;
        transform: rotate(-9deg);
        margin-right: -90px;
        opacity: 0.75;
        margin-bottom: -60px;
        /* margin-left: -26px;
    transform: rotate(-9deg);
    margin-right: -85px;
    opacity: 0.75; */
    }

    .update-phones .phone1.center {
        order: 2 !important;
        transform: scale(1.08);
        z-index: 2;
        /* transform: scale(1.08);
    z-index: 10 */
    }

    .update-phones .phone1.right {
        order: 3 !important;
        transform: rotate(9deg);
        margin-left: -60px;
        opacity: 0.75;
        margin-bottom: -150px;
    }

    .update-phones .phone1::after {
        opacity: 0 !important;
    }

    .update-section .update-content {
        display: contents !important;
    }

    .update-section {
        display: flex;
        flex-direction: column !important;
        align-items: center;
        text-align: center;
        gap: 25px;
        padding: 0px 0px;
        /* padding-left:40px;
    padding-right: 40px;
    padding-top:40px */
    }

    /* Allow children to reorder */
    .update-section > * {
        width: 100%;
    }

    /* Reorder elements */
    .update-content {
        order: 4 !important;
    }

    .update-content h2 {
         font-size: 35px !important;
        order: 1 !important;
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    /* Move h2 outside content visually */
    .update-section h2 {
        order: 1 !important;
    }

    /* Now h3 + p + arrows after images */
    .update-content h3,
    .update-content p,
    .arrow-icons {
        order: 2 !important;
        text-align: center;
        justify-content: space-between;
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .update-content h3 {
        font-size: clamp(30px, 1.4vw, 40px) !important;
        font-family: var(--rechargebold);
        color: var(--lightyellow);
    }

    .update-content p {
        font-weight: 400;
        font-size: clamp(21px, 1.4vw, 38px) !important;
    }

    .update-content h3,
    .update-content p {
        order: 3 !important;
        padding-left: 20px;
        /* text-align: start; */
        width: 100%;
    }
}

/* 🌍 2440px and ABOVE — 4K / Ultra-Wide Layout */
@media (min-width: 2440px) {
    /* Hero section spacing */
    .hero .content {
        padding-left: 200px;
        padding-right: 160px;
    }

    .hero h2 {
        font-size: 90px;
        margin-bottom: 9.5rem;
    }

    .hero p {
        font-size: 50px;
        margin-right: 60px;
        margin-top: 2.5rem;
        line-height: 1.7;
    }

    /* Store buttons bigger */
    .app-buttons img {
        width: 305px;
        height: 105px;
        padding: 14px;
        border-radius: 8px;
        margin-bottom: 65px;
    }

    /* Social icons bigger */
    .social p {
        font-size: 30px;
        margin-bottom: 12px;
    }

    .social a img {
        width: 80px;
        height: 80px;
    }

    /* Optional: increase gap */
    .social-icons {
        gap: 18px;
    }

    header {
        position: fixed;
        width: 45%;
        right: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: var(--bodyBG);
        padding: 30px 0 30px 30px;
        border-bottom-left-radius: 50px;
        z-index: 10;
        overflow-x: hidden;
        /* filter: drop-shadow(0 15px 30px rgba(13, 13, 13, 0.4)); */
    }

    header nav ul li a {
        position: relative;
        text-decoration: none;
        color: var(--whiteColor);
        font-family: var(--rechargebold);
        font-weight: 700;
        letter-spacing: 0.5px;
        transition: color 0.3s ease;
        font-size: 38px;
        padding-bottom: 5px;
    }

    .paragraph-content p {
        font-size: 32px;
        max-width: 1200px;
    }

    .features li {
        gap: 20px;
        font-size: 34px;
    }

    .buy-btn {
        padding: 34px 21px;
        font-size: 19px;
    }

    .usa-only {
        font-size: 24px;
    }

    .usa-only img {
        width: 114px;
    }

    .rollers img {
        width: 98px;
    }

    .main-content h2 {
        font-size: 35px;
    }

    .main-content-description p {
        font-size: 29px;
    }

    .rollerss {
        width: 560px;
        height: 341px;
    }

    .fanny-pack-section h1 {
        font-size: 40px;
    }

    .fanny-pack-section p {
        color: var(--whiteColor);
        font-size: 36px;
        line-height: 1.6;
        margin-bottom: 25px;
        max-width: 900px;
    }

    .find-section h1 {
        font-size: 70px;
    }

    .title-with-icon img {
        width: 60px;
        height: 60px;
    }

    .find-section h2 {
        font-size: 40px;
    }

    .find-section p {
        font-size: 32px;
        max-width: 700px;
    }

    .update-content h2 {
        font-size: 50px;
    }

    .update-content h3 {
        font-size: 40px;
    }

    .update-content p {
        font-size: 30px;
    }
}

/* PERFECT FIX FOR 768px - 940px */

/* HERO MOBILE FIX */

@media (max-width: 768px) {
    .hero {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100% !important;
        text-align: center !important;
        overflow: hidden !important;
        padding-bottom: 5vh;
        /* same feel scaling */
    }

    /* IMAGE TOP */
    .hero .left {
        order: 1 !important;
        width: 100% !important;
        height: 48vh !important;
        /* adjusts across devices */
        background-size: cover !important;
        /* background-position: top center !important; */
    }

    /* RIGHT SECTION */
    .hero .right {
        order: 2 !important;
        width: 100% !important;
        padding: 4vw 5vw 10vw;
        position: static !important;
        background: var(--header) !important;
        border-bottom-left-radius: 15vw;
        /* same shape on all sizes */
        box-shadow: 0 20px 10px rgba(0, 0, 0, 0.3);
    }

    .hero .content {
        padding: 5px !important;
    }

    .hero h2 {
        font-size: clamp(28px, 7vw, 52px) !important;
        margin-bottom: 2vw !important;
        line-height: 1.15;
    }

    .hero p {
        font-size: clamp(14px, 4.2vw, 23px) !important;
        margin: 2vw 0 4vw !important;
    }

    /* BUTTONS */
    .app-buttons {
        display: flex;
        /* justify-content: center; */
        /* gap: 4vw; */
        margin-bottom: 6vw;
        margin-left: 5px;
    }

    .app-buttons img {
        width: clamp(80px, 34vw, 241px);
        height: auto;
    }

    /* SOCIAL SECTION */
    .social {
        position: static !important;
        margin-top: 5vw;
    }

    .social p {
        font-size: clamp(12px, 3.8vw, 22px);
        margin-bottom: 2vw;
    }

    .social-icons {
        gap: 5vw;
    }

    .social a img {
        width: clamp(22px, 8vw, 50px);
        height: clamp(22px, 8vw, 50px);
    }

    .social {
        order: 3 !important;
        position: absolute !important;
        bottom: 10vw;
        right: 3vh;
        /* transform: translateX(55%); */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0;
    }

    /* Make sure social stays inside .hero .right visually */
    .hero .right .social {
        margin-top: 5vw !important;
    }

    /* header nav ul li a {
    font-size: clamp(10px, 3vw, 12px) !important;
    letter-spacing: 0.2px;
  } */
}

@media (max-width: 660px) {
    header nav ul {
        gap: 42px !important;
        /* reduce spacing */
    }

    .hero .left {
        background: url(/frontend_assets2/images/bg.png) left top / cover
            no-repeat !important;
        order: 1 !important;
        width: 100% !important;
        height: 48vh !important;
        /* background-size: cover !important; */
        background-position: top center !important;
    }

    header nav ul li a {
        font-size: clamp(10px, 2vw, 20px) !important;
        letter-spacing: 0.2px;
    }

    .hero .logo img {
        width: 50px;
        height: auto;
    }

    .hero .logo {
        position: absolute;
        top: 10px;
        left: 20px;
        z-index: 5;
    }

    .text-content h1 {
        font-size: clamp(22px, 3.5vw, 34px);
    }

    .paragraph-content p {
        font-size: clamp(16px, 3.5vw, 24px);
        text-align: left;
        padding-left: clamp(10px, 4vw, 30px);
    }

    .features {
        display: flex;
        flex-wrap: wrap;
        justify-items: start;
        gap: clamp(6px, 2vw, 12px) clamp(10px, 4vw, 25px);
        margin: 0 auto clamp(15px, 4vw, 25px) auto;
        padding-left: clamp(10px, 4vw, 30px);
    }

    .features li {
        font-size: clamp(14px, 3vw, 21px);
        font-weight: 500;
    }

    .cta {
        justify-content: flex-start;
        padding-left: clamp(10px, 4vw, 30px);
    }

    .buy-btn {
        padding: clamp(6px, 1.8vw, 10px) clamp(14px, 4vw, 20px);
        font-size: clamp(13px, 2.8vw, 18px);
    }

    .usa-only {
        font-size: 10px;
    }

    .usa-only img {
        width: clamp(35px, 8vw, 60px);
    }

    .rollers img {
        width: clamp(40px, 9vw, 50px);
    }

    .roller p {
        font-size: clamp(10px, 2.8vw, 14px);
    }

    .image-container img {
        width: 430px;
        margin-top: -50px;
    }

    .FannyPack img {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .social {
        order: 3 !important;
        position: absolute !important;
        top: 95vh;
        bottom: -2vw;
        right: 3vh;
        /* transform: translateX(55%); */
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0;
    }

    .update-content h3 {
        font-size: 22px !important;
        margin-top: -40px !important;
    }

    .category-bg img {
        width: 135% !important;
    }

    /* .category-content {
        left: 69% !important;
    } */

    .category-content h1 {
        text-align: center !important;
        margin-left: 0px;
    }

    .social-media img {
        width: 35px;
    }
}

@media (max-width: 760px) {
    /* STACK ELEMENTS */
    .foam-roller-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 10px;
    }

    /* ROLLERS */
    .roller-container {
        flex-direction: row;
        align-items: center;
        gap: 15px;
        margin-bottom: 20px;
    }

    /* CENTER stays large */
    .rollerss.center img {
        width: clamp(180px, 45vw, 260px);
        opacity: 1;
    }

    /* LEFT & RIGHT go smaller & side-by-side */
    .rollerss:not(.center) {
        display: inline-flex;
        justify-content: flex-end;
        align-items: center;
        width: clamp(60px, 36vw, 161px);
        opacity: 0.65;
        filter: blur(1px);
        margin-right: -75px;
    }

    .rollerss:not(.center) img {
        width: clamp(60px, 18vw, 100px);
        opacity: 0.65;
        filter: blur(1px);
    }

    .rollerss:first-child,
    .rollerss:last-child {
        margin: 0 8px;
    }

    .main-content h2 {
        font-size: clamp(20px, 6vw, 28px);
        margin: 0;
    }

    /* .category-icons {
        grid-template-columns: repeat(9, 1fr);
    } */
}

@media (max-width: 450px) {
      header nav ul {
        gap: 30px !important;
        /* reduce spacing */
    }
    .main-content-description p {
        font-size: clamp(14px, 4vw, 18px);
        max-width: 220px;
        margin: 0 auto;
    }

    .foam-roller-section .main-content h2 {
        font-size: 10px;
    }

    .image-container img {
        width: 345px;
        margin-top: -80px;
    }

    .FannyPack img {
        height: 100%;
        width: 90%;
        padding-top: 49px;
        /* transform: rotate(13deg); */
    }
}

/* -------------------------------
   CATEGORY SECTION - BELOW 600PX
--------------------------------*/
@media (max-width: 1024px) {
    .category-section {
        position: relative;
        width: 100%;
        /* padding: 25px 0; */
        overflow: hidden;
    }

    .category-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.6;
        /* same look as screenshot */
    }

    .category-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 92%;
        text-align: center;
        /* align-items: center; */
    }

    .category-content h1 {
        font-family: var(--rechargebold);
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 18px;
        /* text-align: left; */
    }

    /* Icon Grid exactly like screenshot */
    .category-icons {
        display: grid;
        grid-template-columns: repeat(6, 0.1fr);
        /* grid-template-columns: repeat(6, 0.2fr);  */
        gap: 5px 0;
        justify-items: center;
        margin-left: 40%;
    }

    .circle {
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .circle img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .heading h1 {
        font-size: 30px;
        font-weight: 500px;
        padding-top: 10px;
        padding-bottom: 20px;
    }

    .pros h1 {
        font-size: 30px;
        font-weight: 500px;
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

/* 👇 Extra scaling for very small screens */
@media (max-width: 650px) {
    .heading h1 {
        font-size: 25px;
        font-weight: 500px;
        padding-top: 5px;
        padding-bottom: 10px;
    }

    .pros h1 {
        font-size: 25px;
        font-weight: 500px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .category-content {
        width: 94%;
        /* align-items: flex-start !important; */
    }

    .category-content h1 {
        font-size: 16px;
        line-height: 1.25;
        margin-bottom: 14px;
        text-align: left;
        /* same as your requirement */
    }

    .category-icons {
        grid-template-columns: repeat(6, 0.1fr);
        /* tighter icons */
        gap: 10px 0;
    }

    .circle {
        width: 36px;
        height: 36px;
    }

    .circle img {
        width: 90%;
        height: 90%;
    }

    .fanny-pack-section .p {
        font-size: clamp(16px, 3.5vw, 24px);
        text-align: left;
        padding-left: clamp(10px, 4vw, 30px);
    }

    .heading {
        padding-top: 16px;
    }

    .pros {
        margin-top: 12px;
    }
}

@media (max-width: 450px) {
    .heading h1 {
        font-size: 20px;
        font-weight: 500px;
        padding-top: 3px;
        padding-bottom: 5px;
    }

    .pros h1 {
        font-size: 20px;
        font-weight: 500px;
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .gradient-box p {
        font-size: 16px;
    }

    .category-content {
        width: 90%;
    }

    .category-content h1 {
        font-size: 14px;
        line-height: 1.25;
        margin-bottom: 14px;
        text-align: left;
        /* same as your requirement */
    }

    .category-icons {
        grid-template-columns: repeat(6, 0.1fr);
        /* tighter icons */
        gap: 8px 0;
        justify-content: flex-start !important;
    }

    .circle {
        width: 32px;
        height: 32px;
    }

    .circle img {
        width: 92%;
        height: 92%;
    }

    .email-box {
        width: 335px;
    }

    .gradient-box p {
        font-size: 10px;
    }
}

/* ===== FOAM SLIDER PERFECT MOBILE FIX ===== */
@media (max-width: 768px) {
    /* Make section reorderable */
    .foam-roller-section {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 18px;
    }

    /* Heading + arrows row */
    .bottom-section {
        order: 1 !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 18px !important;
        width: 100%;
        margin-bottom: 15px;
    }

    /* Ensure h2 stays center in row */
    .bottom-section .main-content {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bottom-section .main-content h2 {
        margin: 0 !important;
        font-size: clamp(12px, 3.5vw, 26px) !important;
        white-space: nowrap;
    }

    /* Arrow buttons normal inline */
    .bottom-section .arrows {
        position: static !important;
        margin: 0 !important;
    }

    .bottom-section .arrows img {
        width: 30px !important;
        height: auto;
        padding-top: 20px;
    }

    /* Image will come below heading */
    .roller-container {
        order: 2 !important;
        margin-bottom: 5px !important;
    }

    /* Description text comes last */
    .main-content-description {
        order: 3 !important;
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 0 20px;
        padding-bottom: 50px;
        border: 0px solid var(--lightyellow);
        border-bottom-width: 3px;
        height: 170px;
    }

    .main-content-description p {
        text-align: center;
        font-size: clamp(18px, 3vw, 28px);
        max-width: 100%;
        padding-top: 15px;
        margin: 0 auto;
    }
}

@media (max-width: 1000px) {
    /* Flatten content so its children can reorder relative to .phones */
    .find-section .content {
        display: contents !important;
    }

    /* Ordering */
    .find-section .title-with-icon {
        order: 1 !important;
        padding-bottom: 10px;
    }

    .find-section .phones {
        order: 2 !important;
        /* margin-left: 150px; */
    }

    .find-section h2 {
        order: 3 !important;
        padding-left: 10px;
        font-size: 18px;
    }

    .find-section p {
        order: 4 !important;
        padding-bottom: 35px;
        text-align: center;
        border: 0px solid var(--lightyellow);
        border-bottom-width: 2px;
        /* padding-left: 10px; */
        max-width: 90%;
    }
}

/* ==============================
   PERFECT MOBILE STACK ORDER FIX
   ============================== */
@media (max-width: 768px) {
    .fanny-pack-section {
        display: contents !important;
    }

    /* Flatten .content wrapper so h1, p, ul, cta behave like siblings */
    .fanny-pack-section .content {
        display: contents !important;
    }

    /* Assign correct order to each element */
    .fanny-pack-section h1 {
        order: 1 !important;
    }

    .fanny-pack-section .image-container {
        order: 2 !important;
        margin-top: 20px;
    }

    .FannyPack {
        order: 3 !important;
        width: 100%;
        display: flex !important;
        justify-content: center !important;
    }

    .fanny-pack-section p {
        order: 4 !important;
        font-weight: 500;
        max-width: 100%;
        font-size: 18px;
    }

    .fanny-pack-section .features {
        order: 5 !important;
        display: grid;
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        justify-items: start;
        gap: 12px 25px;
        margin: 0 0 5px 0;
    }

    .fanny-pack-section .cta {
        order: 6 !important;
        margin-top: 0px;
    }

    .FannyPack img {
        height: 100%;
        width: 90%;
        /* padding-top: 59px; */
        transform: rotate(13deg);
    }

    .gradient-box p {
        font-size: 24px;
    }

    .find-section {
        padding: 10px 20px;
    }
}

@media (max-width: 660px) {
    .fanny-pack-section p {
        font-size: clamp(16px, 3.5vw, 24px);
        text-align: left;
        padding-left: clamp(10px, 4vw, 30px);
        padding-top: 15px;
    }

    .fanny-pack-section .features {
        display: flex;
        flex-wrap: wrap;
        justify-items: start;
        gap: clamp(6px, 2vw, 12px) clamp(10px, 4vw, 25px);
        /* margin: 0 auto clamp(15px, 4vw, 25px) auto; */
        padding-left: clamp(10px, 4vw, 30px);
    }

    .fanny-pack-section .features li {
        font-size: clamp(14px, 3vw, 21px);
        font-weight: 500;
    }

    .fanny-pack-section .cta {
        justify-content: flex-start;
        padding-left: clamp(10px, 4vw, 30px);
    }

    .fanny-pack-section .buy-btn {
        padding: clamp(6px, 1.8vw, 10px) clamp(14px, 4vw, 20px);
        font-size: clamp(13px, 2.8vw, 18px);
    }

    .fanny-pack-section .usa-only {
        font-size: 9px;
    }

    .gradient-box p {
        font-size: 18px;
    }

    .footer-section h2 {
        font-size: clamp(14px, 3.4vw, 30px);
        padding: 2px;
    }

    .footer-bottom p {
        font-size: clamp(8px, 1.5vw, 16px);
        gap: 3px;
    }

    .social-media {
        gap: 10px;
    }

    .find-section .phones {
        margin-top: 18px !important;
        /* padding: 0px 0px !important; */
        padding-top: 30px !important;
        padding-bottom: 0px !important;
    }
    .find-section h2 {
        padding-top: 2px;
    }
    .footer-content {
        padding: 20px;
    }
}

@media (max-width: 740px) {
    /* Remove overlap on mobile */
    .phone:nth-child(2),
    .phone:nth-child(3) {
        margin-left: 0 !important;
    }

    /* Reset section padding to stop first phone clipping */
    .find-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Scroll container */
    .phones {
        width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;
        display: flex !important;
        gap: 0px !important;
        padding: 30px 10px !important;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* Every phone is a slide */
    .phone,
    .phone-calendar {
        flex: 0 0 auto !important;
        scroll-snap-align: start;
        margin-left: 0 !important;
    }

    /* First phone fully visible */
    .phones .phone:first-child {
        margin-left: 600px !important;
        /* padding-left: 60px !important; */
    }

    .phones .phone-calendar:first-child {
        margin-left: 200px !important;
        padding-left: 80px !important;
    }

    /* Hide scrollbar */
    .phones::-webkit-scrollbar {
        display: none;
    }
}

/* @media (max-width: 768px) {
  .update-section {
    flex-direction: column;
    gap: 20px !important;
  }

  .update-content {
    order: 2;
    text-align: center !important;
  }

  .update-phones {
    order: 1;
    gap: 0px;
  }
} */

@media (max-width: 510px) {
    .update-content h3 {
        font-size: 15px !important;
    }

    .arrow-icons img {
        width: 40px;
    }

    .update-content p {
        width: 90% !important;
        font-size: clamp(18px, 1.4vw, 38px) !important;
    }

    .gradient-box p {
        font-size: 14px;
    }

    .phone {
        flex: 0 0 auto !important;
        scroll-snap-align: center;
        margin-left: 0 !important;
    }

    .find-section .phones {
        padding-right: 40px !important;
    }
}

@media (max-width: 940px) {
    /* parent ko flex banao */
    .arrow-icons {
        width: 100%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 20px;
        position: relative;
    }

    /* LEFT arrow completely left */
    .arrow-icons .left-btn {
        position: absolute;
        left: 20px;
    }

    /* RIGHT arrow completely right */
    .arrow-icons .right-btn {
        position: absolute;
        right: 20px;
    }

    /* h3 ko center karo */
    .update-content h3 {
        width: 100%;
        text-align: center !important;
        order: -1;
        margin-top: -45px;
    }

    .update-content p {
        width: 85%;
    }
}
@media (max-width: 1260px) {
    .update-content h2 {
        font-size: 38px;
    }
}

.amazon-rank-container {
    width: 100%;
    padding: 2px 0;
}

.rank-heading {
    color: var(--lightyellow);
    font-family: var(--rechargebold);
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 25px;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.4);
}

.rank-content-row {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rank-product-img {
    width: 300px;
    border-radius: 12px;
}

.points-column {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.key-points {
    padding: 10px 16px;
    border-radius: 12px;
    color: var(--whiteColor);
    font-family: var(--dm-sans);
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.icon {
    width: 45px;
    height: 45px;
    object-fit: contain;
}

.mobile-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.mobile-points-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.mobile-top-row .rank-heading {
    font-size: 27px;
    line-height: 1;
    max-width: 60%;
    text-align: center;
}

.mobile-top-row .rank-product-img {
    width: 190px;
}
@media (max-width: 1024px) {
    .rank-heading {
        font-size: 40px;
    }
}
@media (max-width: 660px) {
    .icon {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .key-points {
        padding: 1px 0px;
        border-radius: 12px;
        color: var(--whiteColor);
        font-family: var(--dm-sans);
        font-size: clamp(11px, 3.2vw, 20px);
        font-weight: 400;
        display: flex;
        align-items: center;
        gap: 3px;
    }

    .rank-heading {
        margin-bottom: 2px;
    }
}
/* 📱🔥 FIX FOR PHONE LANDSCAPE MODE (height small, width large) */
/* 🔥 PERFECT LANDSCAPE FIX FOR SMALL HEIGHT DEVICES */
@media screen and (max-height: 500px) {

    .hero {
        display: flex !important;
        flex-direction: row !important;
        height: 100vh !important;
        overflow: hidden !important;
    }

    /* LEFT SIDE IMAGE */
    .hero .left {
        width: 48% !important;
        height: 100% !important;
        /* background-size: cover !important; */
        /* background-position: center !important; */
    }


    /* RIGHT CONTENT FIX */
    .hero .right {
        /* width: 52% !important; */
        height: 100% !important;
        padding: 20px 16px 10px !important; /* TOP space increased */
        display: flex !important;
        flex-direction: column !important;
        justify-content:center !important; /* START instead of center */
        gap: 6px !important;

        /* BLUE CURVE SHRINK FIX */
        background-size: 110% auto !important;
        background-position: top right !important;
        margin-top: -4px;
    }

    /* HEADER TEXT (WELCOME) FIX */
    .hero h2 {
        margin-top: 10px !important; /* Push down slightly */
        font-size: 22px !important;
        line-height: 1.1 !important;
    }

    /* PARAGRAPHS */
    .hero p {
        font-size: 12px !important;
        margin: 2vw 0 1vw !important;
    }

    .hero .logo img {
    width: 50px;
    height: 50px;
}


    /* APP BUTTONS SMALLER */
    .app-buttons {
        gap: 8px !important;
        margin: 5px 0 !important;
    }

    .app-buttons img {
        width: 90px !important;
        height: auto !important;
    }

    /* SOCIAL SECTION FIX */
    .social {
        position: absolute !important;
        bottom: -35px !important;
        /* bottom: 6px !important;
        left: 50% !important; */
        /* transform: translateX(-50%) !important; */
        margin: 0 !important;
        text-align: center !important;
    }

    .social p {
        font-size: 11px !important;
        margin-bottom: 4px !important;
        margin-top: 50px !important;

    }

    .social-icons {
        gap: 6px !important;
    }

    .social-icons img {
        width: 20px !important;
        height: 20px !important;
    }
}

