/* Backend CSS */

/* ###ROOT### */

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

:root {
    --font-body: 'Poppins', sans-serif;
    --font-heading: 'Montserrat', sans-serif;
    --pink: #FF4286;
    --white: #ffffff;
    --black: #0B0B0D;
    --blue: #E1AA19;
    --light-blue: #FFF7E6;
    --light-yellow: #FFF2CC;
    --grey: #DFDFDF;
    --yellow: #FFD24A;
    --red: #D31638;
    --filter-bg: #FFF9EC;
    --gold: linear-gradient(135deg, #B87900 0%, #DFAE2E 50%, #FFE27A 100%);
    touch-action: pan-x pan-y;
    height: 100%
}

::-webkit-scrollbar {
    width: 10px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--blue);
}

::-webkit-scrollbar-thumb:hover {
    border-radius: 4px;
    background: var(--yellow);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:focus, input:active,
select:focus, select:active,
textarea:focus, textarea:active {
    box-shadow: none !important;
}

.owl-nav, .owl-dots {
    display: none !important;
}

a {
    text-decoration: none;
}

/* The VVIP NUMBERS — vertical logo in header, footer, auth pages, dashboards */
.vip-nav .logo img,
.foot-top .foot-top-option:first-child > img,
.aside-logo a img,
.login-logo img {
    height: 4.25rem !important;
    width: auto !important;
    max-width: 9.5rem;
    object-fit: contain;
}

p {
    margin: 0;
}

/* ###COMMON### */

body {
    font-family: var(--font-body);
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
        overflow-x: hidden;
    background: linear-gradient(180deg, #FFF1C9 0%, #FFF7E2 42%, #FFFFFF 100%);
    background-attachment: fixed;
    color: var(--black);
}

main {
    flex-grow: 1;
    /* Allow shrinking below wide grid min-content (avoids page/section horizontal scroll). */
    min-width: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.custom-container {
    width: min(90%, 100%);
    max-width: 100%;
    min-width: 0;
    margin: auto;
    box-sizing: border-box;
}

.back-to-top-div {
    position: fixed;
    right: 2%;
    bottom: 5%;
    transition: all 2s ease;
    display: none;
    z-index: 999;
}

.back-to-top {
    height: 2.5rem;
    width: 2.5rem;
    background-color: var(--yellow);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    border-radius: 10px;
}

.back-to-top img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.vip-btn {
    font-size: 1rem;
    width: fit-content;
    padding: .5rem 1.5rem;
    text-decoration: none;
    background: transparent;
    transition: background-color .2s ease;
    border: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.vip-btn img {
    height: 1.8rem;
    width: 1.8rem;
    object-fit: contain;
}

.vip-btn-red {
    background-color: var(--red);
    color: var(--white);
    border-radius: 50vw;
    font-weight: 500;
}

.vip-btn-blue {
    background-color: var(--black);
    color: var(--white);
    border: 1px solid rgba(255, 210, 74, 0.45);
    border-radius: 50vw;
    font-weight: 500;
    box-shadow: rgba(11, 11, 13, 0.2) 0px 6px 14px;
}

.vip-btn-blue:hover {
    background: var(--gold);
    color: var(--black);
    border-color: rgba(11, 11, 13, 0.22);
}

.vip-btn-yellow {
    background: var(--gold);
    color: var(--black);
    border: 1px solid rgba(11, 11, 13, 0.18);
    border-radius: 50vw;
    font-weight: 600;
    box-shadow: rgba(183, 121, 0, 0.35) 0px 8px 20px;
}

.vip-btn-grey {
    background-color: var(--grey);
    color: var(--black);
    border-radius: 50vw;
    font-weight: 500;
}

.vip-btn-yellow:hover {
    background: linear-gradient(135deg, #a06d00 0%, #c9961b 60%, #f4cd5a 100%);
    color: var(--black);
}

.vip-btn-hero-yellow {
    border-radius: 10px 10px 0 0;
}


.access-bar {
    background-color: var(--blue);
    border-radius: 0 0 5px 5px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.access-data {
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.access-data span a {
    text-decoration: none;
    color: var(--white);
    padding: .5rem 1.5rem;
    border-radius: 5px;
}

/* .access-name {
    width: 50%;
    text-wrap: wrap;
    white-space: wrap;
    word-wrap: break-word;
    word-break: break-all;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
} */

.view-more-navigation {
    color: var(--blue);
    font-size: 1.2rem;
    font-weight: 500;
}

.sectionWrapper {
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    margin: 1rem auto;
}

.page-heading {
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    color: var(--black);
}

.order-id-head {
    font-size: 1.2rem !important;
}

.subheading {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    margin: 0;
    color: var(--black);
    text-shadow: 0 1px 0 rgba(255, 226, 122, 0.25);
}

.layout-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: calc(80dvh - 6rem);
}

.main-layout {
    gap: 1.5rem !important;
    margin-bottom: 4rem;
}

.main-layout, .layout {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.required {
    color: var(--red);
    font-size: 1.5rem !important;
}

.page-not-found {
    justify-content: center;
    flex-direction: column;
    gap: 2rem;
}

.page-not-found h4 {
    text-align: center;
    color: var(--grey);
}

.sim-yellow {
    fill: var(--yellow);
}

.sim-blue {
    fill: var(--blue);
}

.sim-red {
    fill: var(--red);
}

.dropdown-menu {
    min-width: fit-content !important;
}

/* ###NAVBAR### */

.vip-nav {
    margin-top: 2rem;
    border-radius: 50vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #070708 0%, #151515 60%, #211904 100%);
    border: 1px solid rgba(255, 210, 74, 0.28);
    box-shadow: rgba(0, 0, 0, 0.45) 0px 10px 25px;
    position: sticky;
    top: 1%;
    left: 0;
    z-index: 2;
    width: 100%;
}

.logo a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo a svg {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.logo a img {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.logo a svg {
    display: none;
}

/* Centered site name on narrow phones only */
.vip-nav-brand-title {
    display: none;
    margin: 0;
}

/* Must stay ≤549px: from 550px up the inline logo span is shown (see 991px + 550px queries) */
@media only screen and (max-width: 549px) {
    .vip-nav-brand-title {
        display: block;
        flex: 1 1 0;
        min-width: 0;
        align-self: center;
        text-align: center;
        font-family: var(--font-heading);
        font-weight: 600;
        font-size: clamp(0.68rem, 3.4vw, 0.88rem);
        line-height: 1.2;
        letter-spacing: 0.03em;
        color: #fff;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
        padding: 0 0.35rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .vip-nav .logo {
        flex-shrink: 0;
    }

    .vip-nav > .vip-nav-options {
        flex-shrink: 0;
    }
}

.vip-nav-options, .vip-nav-option {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.vip-nav-option a,
.categories-dropdown {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
}

.nav-btn {
    padding: .2rem;
}

.nav-btn img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.nav-btn-dropdown::after {
    display: none !important;
}

.categories-dropdown::after {
    margin: 0 !important;
}

.vip-dd-menu {
    background-color: var(--blue);
    z-index: 999 !important;
}

.vip-dd-item {
    color: var(--white);
    z-index: 999 !important;
}

.category-menu {
    max-height: 25rem;
    max-width: 50rem;
    overflow-x: scroll;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cat-item {
    min-width: fit-content;
}

.category-menu::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background: var(--yellow);
}

/* ###LOGIN### */

.login-container {
    min-height: 100dvh;
    display: flex;
    width: 100%;
    align-items: center;
}

.sign-up-data {
    width: 60% !important;
}

.sign-up-image {
    width: 40% !important;
}

.sign-in-layout {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.sign-in-layout > div {
    width: 48%;
}

.login-layout {
    width: 50%;
    height: 100%;
    display: flex;
}

.login-data {
    width: 80%;
    margin: auto;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.login-data form {
    width: 100%;
}

.login-image {
    width: 50%;
}

.login-img {
    height: 100vh;
    position: relative;
}

.login-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.login-logo {
    position: absolute;
    top: 2%;
    right: 2%;
    z-index: 2;
}

.login-logo svg {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
    object-position: center;
}

.login-logo svg {
    display: none;
}

.login-logo img {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
    object-position: center;
    display: block;
}

/* ###INDEX### */

.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    max-height: 70vh;
    margin-top: clamp(1rem, 2.8vw, 2.5rem);
    padding-top: clamp(0.35rem, 1.2vw, 0.85rem);
}

.hero-text {
    width: 60%;
    min-width: 0;
}

.hero-text h1 {
    font-size: 4rem;
    text-wrap: balance;
    color: var(--black);
}

.hero-text h1 span {
    font-family: var(--font-heading);
}

.hero-img {
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-banner-text {
    height: 28rem;
    width: 40rem;
    object-fit: contain;
    animation-name: spin;
    animation-duration: 10s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.hero-banner-img {
    position: absolute;
    height: 22rem;
    width: 16rem;
    max-width: 85%;
    object-fit: contain;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.hero-search-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-search-option {
    display: flex;
    align-items: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.hero-search-option .vip-btn-hero-yellow {
    background: transparent;
    color: var(--black);
    border: 1px solid transparent;
    border-radius: 12px 12px 0 0;
    font-weight: 600;
    padding: .6rem 1.3rem;
}

.hero-search-option > .active {
    background: var(--gold) !important;
    color: var(--black) !important;
    border-color: rgba(11, 11, 13, 0.18);
    box-shadow: rgba(183, 121, 0, 0.25) 0px 8px 20px;
}

/* Full-width strip — centered block, gold / cream / black */
.hero-whatsapp-strip {
    width: 100%;
    max-width: 100%;
    margin-top: 1.15rem;
    padding: 1.15rem 0 0;
    border-top: 1px dashed rgba(183, 121, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
}

.hero-whatsapp-strip-title {
    font-size: 0.78rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--black);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin: 0 0 0.75rem;
}

.hero-whatsapp-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1rem;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    align-items: stretch;
}

.hero-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 3rem;
    padding: 0.6rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #fff7e4 0%, #ffe7a5 100%);
    border: 1px solid rgba(183, 121, 0, 0.4);
    color: var(--black);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: rgba(183, 121, 0, 0.22) 0 6px 18px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}

.hero-whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: rgba(183, 121, 0, 0.38) 0 10px 26px;
    background: linear-gradient(135deg, #ffe8b8 0%, #ffd87a 55%, #fff4d4 100%);
    color: var(--black);
    border-color: rgba(11, 11, 13, 0.35);
}

.hero-whatsapp-btn:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 2px;
}

.hero-whatsapp-icon {
    flex-shrink: 0;
    color: #6b4e0a;
}

@media (max-width: 380px) {
    .hero-whatsapp-links {
        grid-template-columns: 1fr;
    }
}

.index-guide-section {
    border-top: 2px dashed var(--blue);
    border-bottom: 2px dashed var(--yellow);
}

.guide-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.guide-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 18%;
}

.guide-step svg {
    transition: all .2s ease;
}

.guide-step svg:hover {
    scale: 1.2;
}

.guide-step svg:hover rect {
    fill: var(--yellow);
}

.guide-step svg:hover path {
    fill: var(--yellow);
}

.notfill {
    fill: var(--white) !important;
}

.guide-step p {
    margin: 0;
    text-align: center;
    font-weight: 600;
}

.index-info-section {
    background: var(--gold);
    box-shadow: rgba(183, 121, 0, 0.22) 0px 10px 30px;
    border-radius: 12px;
    flex-direction: row;
    justify-content: center;
}

.index-information {
    width: 20%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.index-information img {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
    aspect-ratio: 1/1;
}

.index-information h5 {
    color: var(--black);
    text-shadow: 0 1px 0 rgba(255, 244, 213, 0.5);
    text-wrap: pretty;
    text-align: center;
    font-weight: 600;
}

/* Testimonials band — matches gold / cream site theme */
.index-testimonials {
    width: 100%;
    max-width: 72rem;
    padding: 1.75rem 1rem 2.25rem;
    margin-inline: auto;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(255, 243, 214, 0.55) 0%, rgba(255, 250, 240, 0.35) 45%, transparent 100%);
    border-radius: 16px;
}

.index-testimonials-head {
    display: flex;
    align-items: baseline;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-bottom: 1rem;
}

/* “View more...” below cards — same gold style as featured section */
.index-testimonials-more {
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
    padding-top: 0.25rem;
}

.index-testimonials-more .view-more-navigation {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--blue);
    text-decoration: none;
}

.index-testimonials-more .view-more-navigation:hover {
    color: #b8890f;
}

/* Homepage: auto-fit — one card stays centered; four cards share the row */
.testimonials-home-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: 1.35rem;
    align-items: stretch;
    justify-content: center;
    justify-items: center;
    width: 100%;
}

.testimonials-home-grid .testimonials-card {
    width: 100%;
    max-width: min(100%, 400px);
}

.testimonials-page-grid .testimonials-card {
    max-width: none;
}

.testimonials-card {
    width: 100%;
    margin: 0;
    padding: 1.2rem 1.25rem 1.15rem;
    border-radius: 14px;
    min-height: 10rem;
    height: auto;
    background: linear-gradient(165deg, #ffffff 0%, #fffbf2 48%, #fff7e6 100%);
    border: 1px solid rgba(183, 121, 0, 0.42);
    box-shadow:
        0 4px 18px rgba(183, 121, 0, 0.2),
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 2px 8px rgba(11, 11, 13, 0.06);
    position: relative;
    overflow: hidden;
}

.testimonials-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #9a6b0f 0%, #d4a012 40%, #f0d060 70%, #d4a012 100%);
    border-radius: 14px 14px 0 0;
}

.testimonial-card-inner {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    min-height: 0;
    position: relative;
    z-index: 1;
}

.testimonial-card-logo {
    flex: 0 0 4.75rem;
    width: 4.75rem;
    max-height: 5.25rem;
}

.testimonial-card-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 5.25rem;
    object-fit: contain;
    border-radius: 10px;
    border: 1px solid rgba(183, 121, 0, 0.4);
    background: var(--white);
    box-shadow: 0 2px 8px rgba(183, 121, 0, 0.15);
}

.testimonial-card-data {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: space-between;
}

.testimonial-card-data-body p {
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    color: var(--black);
    text-align: left;
}

.testimonial-card-data-head {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    color: var(--black);
}

.testimonial-card-data-head h4 {
    margin: 0;
    text-align: left;
    font-size: 1rem;
    font-weight: 700;
}

/* Full testimonials page (grid, no carousel) */
.testimonials-page {
    padding-bottom: 2rem;
}

.testimonials-page-head {
    text-align: center;
    margin-bottom: 1.5rem;
}

.testimonials-page-head h1 {
    margin-bottom: 0.35rem;
}

.testimonials-page-lead {
    color: var(--black);
    opacity: 0.8;
    margin: 0;
}

.testimonials-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.testimonials-page-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    color: var(--black);
    opacity: 0.85;
}

.testimonials-pagination {
    margin: 1.5rem 0;
}

.testimonials-pagination ul.pagination {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.testimonials-pagination .page-link {
    border-radius: 8px;
}

.testimonials-back-home {
    text-align: center;
    margin-top: 1rem;
}

.testimonials-back-home a {
    font-weight: 600;
    color: var(--black);
    text-decoration: underline;
}

/* Homepage: Jio activation process (replaces former vendor/seller band) */
/* Stretch children full width — .sectionWrapper defaults to align-items:center which
   lets flex items grow to max-content and causes horizontal scroll with 3-col grid. */
.index-jio-activation.sectionWrapper {
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.index-jio-activation {
    background: linear-gradient(160deg, #b57f08 0%, #cf9d22 45%, #f0c653 100%);
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    border-radius: 12px;
    overflow: hidden;
    padding: 2.25rem clamp(0.75rem, 4vw, 2rem) 2.75rem;
    box-sizing: border-box;
    max-width: 100%;
    /* Contain layout so shadows / grid tracks cannot widen scrollable ancestors. */
    contain: layout;
}

.index-jio-activation > .index-jio-head,
.index-jio-activation > .index-jio-subheading,
.index-jio-activation > .index-jio-steps,
.index-jio-activation > .index-jio-foot {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}

.index-jio-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    flex-wrap: wrap;
}

.index-jio-head-text {
    flex: 1 1 18rem;
    min-width: 0;
    max-width: 42rem;
}

.index-jio-title {
    color: var(--white);
    font-size: clamp(1.65rem, 4vw, 2.75rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 0.75rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.index-jio-lead {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.index-jio-lead strong {
    color: #fff;
    font-weight: 700;
}

.index-jio-head-visual {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.index-jio-hero-img {
    width: min(200px, 42vw);
    height: auto;
    max-height: 5rem;
    object-fit: contain;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.2));
}

.index-jio-subheading {
    margin: 0;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    padding-inline: 0.25rem;
    overflow-wrap: anywhere;
}

/* 1 col by default; 2 from tablet; 3 only when there is enough width (prevents horizontal scroll) */
.index-jio-steps {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

@media only screen and (min-width: 700px) {
    .index-jio-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.1rem;
    }
}

@media only screen and (min-width: 1280px) {
    .index-jio-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }
}

.index-jio-step {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 14px;
    padding: 1.35rem 1.2rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Softer shadow — large blur can still contribute to overflow in some engines. */
    box-shadow: rgba(0, 0, 0, 0.1) 0 4px 14px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-wrap: break-word;
}

.index-jio-step-icon {
    width: 4.25rem;
    height: 4.25rem;
    border-radius: 50%;
    background: linear-gradient(145deg, #fff 0%, #fff4d6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.65rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 4px 12px rgba(92, 67, 8, 0.12);
}

.index-jio-step-icon svg {
    display: block;
}

.index-jio-step-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8a6210;
    margin-bottom: 0.35rem;
}

.index-jio-step-title {
    font-size: clamp(1rem, 2.5vw, 1.08rem);
    font-weight: 700;
    color: var(--black);
    margin: 0 0 0.6rem;
    line-height: 1.3;
    max-width: 100%;
}

.index-jio-step-text {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #2a2a2a;
    margin: 0;
    max-width: 100%;
}

.index-jio-step-text strong {
    font-weight: 700;
    color: var(--black);
}

.index-jio-foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    text-align: center;
    padding-top: 0.35rem;
}

.index-jio-foot-line {
    margin: 0;
    color: var(--black);
    font-weight: 600;
    font-size: 1rem;
}

.index-jio-foot-link {
    font-weight: 700;
    color: var(--black);
    text-decoration: underline;
    text-underline-offset: 3px;
    font-size: 1.05rem;
}

.index-jio-foot-link:hover {
    color: #3d2b00;
}

.index-jio-foot-phone {
    color: var(--black);
    font-size: 0.98rem;
    font-weight: 500;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.index-jio-foot-phone a {
    color: var(--black);
    font-weight: 700;
    text-decoration: none;
}

.index-jio-foot-phone a:hover {
    text-decoration: underline;
}

/* ###PRODUCT_WRAPPER### */

.product-wrapper {
    display: flex;
    align-items: center;
    gap: 3rem 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    padding-bottom: 5rem;
}

.product-card {
    width: 20rem;
    background: linear-gradient(160deg, #b57f08 0%, #cf9d22 45%, #f0c653 100%);
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    gap: .5rem;
    border-radius: 35px;
    border: 1px solid rgba(255, 240, 201, 0.38);
    box-shadow: rgba(90, 58, 2, 0.28) 0px 12px 30px, rgba(17, 17, 26, 0.12) 0px 4px 14px;
}

.suggested-card {
    width: 100% !important;
    box-shadow: none;
}

.suggest-card-btn {
    text-wrap: nowrap;
}

.refund-btn {
    text-wrap: nowrap;
}

.card-head {
    color: var(--black);
    text-align: center;
}

.card-head h4 {
    font-size: 2rem;
    font-weight: 600;
    margin: 0;
    letter-spacing: .2rem;
    color: var(--black) !important;
}

.card-head h4 a,
.card-head h4 a[x-apple-data-detectors],
.card-head h4 a:-webkit-any-link {
    color: var(--black) !important;
    text-decoration: none !important;
}

.card-sum {
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
    font-size: 1.2rem;
    padding: .2rem .5rem;
}

.card-sum span {
    padding-inline: .5rem;
}

.card-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1.5rem;
    color: var(--black);
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

.card-link {
    color: var(--black);
    font-size: .8rem;
    font-weight: 400;
    font-family: var(--font-body);
}

.card-link:hover,
.card-link:focus {
    color: var(--black);
    text-decoration: underline;
}

.card-btn {
    background-color: var(--black);
    color: var(--yellow);
    border: 1px solid rgba(240, 194, 75, 0.35);
    border-radius: 5px;
    padding-inline: 1rem !important;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-family: var(--font-heading);
}

.card-btn:hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.25);
}

.card-btn img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.card-favorite-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2rem;
    padding: 0 0.45rem !important;
    background-color: var(--black);
    color: var(--yellow);
    border: 1px solid rgba(240, 194, 75, 0.35);
    border-radius: 5px;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.card-favorite-btn:hover {
    background-color: var(--yellow);
    color: var(--black);
    border-color: rgba(0, 0, 0, 0.25);
}

.card-favorite-icon {
    width: 1.15rem;
    height: 1.15rem;
    display: block;
}

.card-favorite-btn .card-favorite-icon--filled {
    display: none;
}

.card-favorite-btn.is-favorite .card-favorite-icon--outline {
    display: none;
}

.card-favorite-btn.is-favorite .card-favorite-icon--filled {
    display: block;
}

.offer-favorite-btn {
    background-color: var(--black);
}

.store-favorites-section .favorites-empty {
    max-width: 36rem;
    margin: 1rem auto 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.store-favorites-section .favorites-empty a {
    color: var(--yellow);
    font-weight: 600;
}

.numbers-coming-soon {
    width: 100%;
    max-width: min(28rem, 100%);
    margin: 0 auto 1.5rem;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

.numbers-coming-soon-inner {
    text-align: center;
    padding: 1.75rem 1.35rem 1.6rem;
    border-radius: 28px;
    background: linear-gradient(160deg, #b57f08 0%, #cf9d22 42%, #f0c653 100%);
    border: 1px solid rgba(255, 240, 201, 0.45);
    box-shadow: rgba(90, 58, 2, 0.22) 0px 10px 28px, rgba(17, 17, 26, 0.1) 0px 4px 12px;
}

.numbers-coming-soon-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.55);
    margin: 0 0 0.5rem;
}

.numbers-coming-soon-title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--black);
    margin: 0 0 0.65rem;
    line-height: 1.2;
    text-shadow: 0 1px 0 rgba(255, 226, 122, 0.35);
}

.numbers-coming-soon-text {
    font-size: clamp(0.92rem, 2.4vw, 1.05rem);
    line-height: 1.45;
    color: rgba(0, 0, 0, 0.78);
    margin: 0 0 1.25rem;
}

.numbers-coming-soon-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    justify-content: center;
    align-items: center;
}

.numbers-coming-soon-btn {
    font-size: 0.88rem !important;
    padding: 0.55rem 1rem !important;
}

.store-filter-empty {
    max-width: 32rem;
    margin: 1rem auto 2rem;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.5;
}

.store-filter-empty a {
    color: var(--yellow);
    font-weight: 600;
}

.favorites-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.favorites-pagination a {
    color: var(--yellow);
    font-weight: 600;
}

.favorites-page-info {
    color: var(--black);
}

.vip-toast-container {
    z-index: 11000;
}

.vip-toast {
    min-width: 260px;
    border: 1px solid rgba(240, 194, 75, 0.45) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.vip-toast-body {
    color: #fff;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 0.95rem;
    padding: 0.85rem 0 0.85rem 1rem;
}

.card-add-cart {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ###ADVANCE_SEARCH_MODAL### */

.modal-search-option > .active {
    background-color: var(--white) !important;
    color: var(--blue);
}

.modal-search-option button {
    color: var(--white);
}

.modal-content {
    background-color: var(--blue);
    border-radius: 10px;
    border: none;
}

.modal-search-options {
    gap: 0;
}

.modal-tab-content {
    background-color: var(--white);
    border-radius: 0 10px 10px 10px;
}

.modal-information {
    min-height: 30rem;
    justify-content: center;
    flex-direction: column;
    gap: 1rem !important;
    padding: 1rem;
    color: var(--text-secondary);
}

.modal-tab-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-information input {
    border-radius: 5px !important;
    border: 1px solid var(--black);
}

.modal-radio-container,
.modal-search-radio {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-search-radio {
    text-wrap: nowrap;
}

.modal-search-radio input[type=radio] {
    height: 1rem;
    width: 1rem;
}

.modal-advance-fleids-container {
    width: 90%;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modal-advance-fleids {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-advance-fleids p {
    margin: 0;
}

.modal-advance-input {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-advance-input input {
    text-align: center;
}

/* ###INFORMATION### */

.information {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.information input {
    padding: .5rem 1rem;
    border-radius: 50vw;
    width: 50%;
    border: 1px solid rgba(11, 11, 13, 0.12);
    background-color: #f4f4f6;
    box-shadow: inset rgba(0, 0, 0, 0.04) 0px 2px 6px;
}

.hero-information input {
    background-color: #f4f4f6;
    border: 1px solid rgba(11, 11, 13, 0.12);
    color: var(--black);
    font-weight: 500;
}

.hero-information input:active,
.hero-information input:focus {
    border: 1px solid rgba(183, 121, 0, 0.45);
    box-shadow: rgba(183, 121, 0, 0.2) 0px 0px 0px 3px !important;
}

.user-information-form {
    width: 60%;
}

.user-information-form p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.user-information label {
    font-size: 1.5rem;
}

.user-information input,
.user-information select {
    border-radius: 50vw;
    padding: .5rem 1.5rem;
    color: var(--black);
    border: 1px solid var(--black);
}

.user-information textarea {
    border-radius: 10px;
    padding: .5rem 1.5rem;
    color: var(--black);
    height: 10rem;
    border: 1px solid var(--black);
}

.info-link {
    text-align: end;
    font-size: .6rem;
    color: var(--pink);
    font-weight: 600;
}

.info {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.user-information span {
    text-align: end;
    font-size: .6rem;
    font-weight: 500;
}

.user-information button {
    width: 100%;
    font-weight: 400;
}

.sign-terms, .delete-terms {
    flex-direction: row;
    align-items: center;
}

.sign-terms input[type=checkbox] {
    height: 1rem;
    width: 1rem;
    accent-color: var(--yellow);
}

.sign-terms span {
    font-size: .7rem;
    color: var(--black);
}

.delete-terms input[type=checkbox] {
    height: 1.5rem;
    width: 1.5rem;
    accent-color: var(--yellow);
}

.delete-terms span {
    font-size: 1rem;
    color: var(--black);
}

.delete-user-form-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-direction: row;
}

.delete-user-form-btn button {
    border-radius: 50vw;
    font-weight: 500;
}

.ap-otp-inputs {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ap-otp-input {
    border-radius: 5px;
    border: 1px solid var(--black);
    color: var(--black);
    width: 10%;
    padding: .5rem 1rem;
    text-align: center;
}

/* ###USER_GUIDE### */

.guide-wrapper {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.guideline {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: space-between;
    width: 80%;
    margin: auto;
}

.guide-number,
.guide-img {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.step-number {
    height: 8rem;
    width: 8rem;
    border-radius: 50vw;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--white);
    font-weight: 600;
}

.guide-img img {
    height: 10rem;
    width: 10rem;
    object-fit: contain;
}

.guide-data {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-data-head h4 {
    font-weight: 600;
    font-size: 1.5rem;
    margin: 0;
    color: var(--black);
}

.guide-data-body p {
    font-size: 1.2rem;
    color: var(--black);
    margin: 0;
    text-wrap: pretty;
}

/* ###ABOUT_US### */

.about-us-wrapper {
    margin-top: 2rem;
}

.about-us-wrapper > h3 {
    font-size: 2rem;
    margin: 0;
}

.about-us-wrapper > p {
    font-size: 1.2rem;
    margin: 0;
}

/* ###CONTACT_US### */

.contact-us-information {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 5rem;
}

.information-block {
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 10rem;
}

.thanks-data {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.thanks-data p a {
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--blue);
}

.block-heading h6 {
    font-size: 2rem;
    color: var(--black);
    margin: 0;
}

.block-heading ul {
    margin: 1rem 0;
    color: var(--blue);
}

.block-heading-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.block-heading-btn button {
    border-radius: 50vw;
}

.block-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 60%;
    justify-content: space-between;
}

.block-content span {
    font-size: 1rem;
}

.block-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 80%;
}

.block-foot a {
    color: var(--yellow);
    font-size: 1.5rem;
}

.block-foot-contacts a {
    color: var(--black) !important;
}

/* ###MULTIPLE_ORDERS### */

.multi-order-section {
    display: block;
    overflow: hidden;
}

.multi-order-container {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.multi-order-container > .block-heading {
    width: 60%;
}

.multi-order-container > .block-heading-btn {
    width: 40%;
    flex-direction: column;
    align-items: end;
}

.multi-order-container > .block-heading-btn button {
    min-width: 15rem;
}

.multi-order-info {
    display: flex;
    margin-bottom: 2rem;
    align-items: center;
    justify-content: space-between;
}

.multi-order-data span {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.pending-points {
    filter: grayscale(1);
}

/* ###ORDER_CONFIRMATION### */

.order-confirmation {
    background-color: var(--blue);
    color: var(--white);
    min-height: 10rem;
    padding: 1rem;
    width: 60%;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-confirmation-head h6 {
    color: var(--white);
    font-weight: 600;
}

.order-confirmation-body {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-confirmation-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ##USER_SECTION### */

.custom-tooltip {
    --bs-tooltip-bg: var(--grey);
    --bs-tooltip-color: var(--black);
    font-weight: 500;
    font-size: .8rem;
}

.user-options {
    z-index: 1;
}

.user-options svg {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.user-options-active {
    fill: var(--yellow);
}

.refer-or {
    text-align: center;
    font-weight: 600;
}

.code-copy {
    flex-direction: row;
}

.code-copy input {
    flex-grow: 1;
}

.code-copy button {
    width: fit-content;
    padding: .5rem;
}

.code-copy span {
    text-align: start;
}

.userWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem 0;
}

.user-page-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.my-order-form {
    width: 15%;
}

.my-order-form select {
    border-radius: 50vw 0 0 50vw;
    background-color: var(--blue);
    color: var(--white);
}

.orderWrapper {
    gap: 2rem !important;
}

.order-card-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border-bottom: dotted 2px var(--blue);
    padding-bottom: 1rem;
}

.order-card-head {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.order-card-heading h6 {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.order-card-link img {
    height: 1.5rem;
    width: 1.5rem;
    object-fit: contain;
}

.order-card-body {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.order-card-body-data {
    display: flex;
    align-items: end;
    gap: 1rem;
}

.order-card-img svg {
    height: 5rem;
    width: 5rem;
    object-fit: contain;
}

.order-card-details {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.order-card-details p {
    margin: 0;
}

.order-card-body-options {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    width: 20%;
    align-items: end;
}

.order-card-body-options p {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .5rem;
}

.order-card-body-options button {
    border-radius: 50vw;
}

.points-img img {
    height: 1rem;
    width: 1.5rem;
    object-fit: contain;
}

.order-pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    cursor: pointer;
    position: absolute;
    bottom: 0;
}

.wallet-pagination {
    position: unset !important;
}

.order-pagination a {
    color: var(--blue);
}

.upc-info {
    color: var(--red);
    font-size: .8rem;
}

.upc-container {
    width: 50%;
    text-align: justify;
}

.upc-container p {
    font-size: 1.5rem;
}

.upc-container p b {
    color: var(--blue);
}

.wallet-container {
    padding: 2rem 0;
    margin: 2rem auto;
}

.wallet-container,
.wallet-head {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.wallet-balance,
.balance {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.balance {
    width: 100%;
    background-color: var(--light-blue);
    padding: 1rem .5rem;
    border-radius: 5px;
}

.balance span {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: 1.2rem;
}

.payment {
    display: none;
    flex-direction: column;
    gap: 1.5rem;
}

.payment-failed-wrapper {
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-failed-wrapper p {
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--font-heading);
}

.payment-details {
    display: flex;
    flex-direction: column;
    gap: .8rem;
}

.payment-data {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* ###TABLE### */

.tableWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.data-table-overflow {
    overflow-x: scroll;
}

.table-label {
    border-radius: 10px 10px 0 0;
    background-color: var(--black);
    color: var(--white);
    padding: .5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.data-table .table-label {
    width: 100%;
}

.data-table {
    height: 80%;
    margin: 0;
}

.data-table-head tr th,
.data-table-body tr td {
    color: var(--black);
    border: none;
    border-left: 1px solid var(--blue);
    border-right: 1px solid var(--blue);
    word-break: keep-all;
    white-space: nowrap;
    text-wrap: nowrap;
    text-align: center;
    font-size: .8rem;
    font-weight: 500;
}

.data-table-head tr th {
    font-weight: 600 !important;
    background: var(--light-yellow);
}

.data-table-body tr td a {
    color: var(--blue);
    font-weight: 400;
    font-family: var(--font-heading);
}

.data-table-body tr td button {
    font-size: .8rem;
    padding: .2rem 1rem;
}

.data-table-body tr td:first-child,
.data-table-head tr th:first-child,
.data-table-body tr td:last-child,
.data-table-head tr th:last-child {
    border-left: none;
    border-right: none;
}

.data-table-body tr:nth-child(even) > * {
    background: var(--light-yellow);
}

.data-table-body tr:nth-child(odd) > * {
    background: var(--white);
}

/* ###CAREER### */

.careerSection {
    margin: 2rem auto;
    width: 50%;
    padding: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.career-head {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.career-head h2 {
    font-weight: 600;
}

.career-head p {
    font-size: 1.1rem;
}

.career-head h3 {
    font-weight: 600;
    font-size: 1.5rem;
}

/* ###SUPPORTING_PAGES### */

.supporting-pages {
    width: 60%;
    margin: 2rem auto;
}

.supporting-data p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.supporting-data ol li {
    font-size: 1.1rem;
    margin-bottom: .8rem;
}

/* ###STORE### */

.info-marqee {
    margin: 1rem 0;
    color: var(--white);
    background-color: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 0;
}

/* Infinite horizontal scroll (duplicate segments in HTML); link stays clickable on first copy */
.store-marquee {
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.store-marquee-track {
    display: flex;
    width: max-content;
    animation: store-marquee-scroll 50s linear infinite;
}

.store-marquee-track:hover {
    animation-play-state: paused;
}

.store-marquee-segment {
    flex: 0 0 auto;
    padding: 0.35rem 2.5rem 0.35rem 0;
    font-size: 0.92rem;
    line-height: 1.45;
    white-space: nowrap;
}

.store-marquee-segment a {
    color: #ffe9a8;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.store-marquee-segment a:hover {
    color: #fff;
}

@keyframes store-marquee-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .store-marquee-track {
        animation: none;
        flex-wrap: wrap;
        width: 100%;
        max-width: 100%;
        justify-content: center;
    }

    .store-marquee-segment {
        white-space: normal;
        text-align: center;
        padding: 0.35rem 0.75rem;
    }

    .store-marquee-segment[aria-hidden="true"] {
        display: none;
    }
}

.store-section {
    margin: 2rem auto;
    width: 100%;
}

.store-banner {
    height: 15rem;
    width: 100%;
}

.store-banner-card {
    height: 15rem;
}

.store-banner-card-data {
    height: 15rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-banner-card-data a {
    height: 100%;
    width: 100%;
}

.store-banner-card-data a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
    background: var(--white);
}

.store-banner-inner,
.store-banner-item {
    height: 100%;
    width: 100%;
    border-radius: 10px;
}

.store-banner-item a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background: var(--white);
}

.store-container {
    display: flex;
    align-items: start;
    gap: 2rem;
    position: relative;
    width: 100%;
}

.overlay {
    position: absolute;
}

.filters {
    width: 18%;
    background-color: var(--filter-bg);
    border-radius: 10px;
    position: sticky;
    top: 11%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-field {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .5rem 1rem;
    min-height: 3rem;
    border-bottom: 1px solid var(--grey);
}

.filter-foot {
    border: none;
}

.filter-clear-btn {
    background: transparent;
    border: none;
    font-size: .8rem;
}

.filter-heading {
    font-weight: 500;
    font-size: 1.5rem;
}

.filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.filter-form label, .cat-span {
    font-size: 1.05rem;
}

.filter-input-group input {
    border-radius: 20px;
    border: 1px solid var(--black);
    width: 100%;
    padding: 0.35rem 0.6rem;
    font-size: 0.95rem;
    min-height: 2.25rem;
    box-sizing: border-box;
}

.store-filter-categories {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    margin: 0 0 0.5rem 0;
    padding: 0 0 0.65rem 0;
    border-bottom: 1px solid var(--grey);
    box-sizing: border-box;
}

.categories-field {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.4rem;
    border: none;
    padding: 0;
}

.cat-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0;
    width: 100%;
}

.cat-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cat-data {
    display: flex;
    align-items: center;
    width: 80%;
}

.cat-name {
    width: 50%;
}

.cat-count {
    font-size: .8rem;
}

.cat-select input {
    accent-color: var(--pink);
    height: 1rem;
    width: 1rem;
}

.filter-btn {
    border: none;
    background: transparent;
    border-radius: 0 50vw 50vw 0;
    background-color: var(--yellow);
    padding: .2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
}

.price-fields {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.filter-range-filed {
    width: 48%;
}

.filter-range-filed input {
    width: 100%;
    padding: 0 .5rem;
    border: 1px solid var(--black);
    border-radius: 20px;
    margin-top: .5rem;
    -moz-appearance: textfield;
}

.slider {
    height: 5px;
    background-color: var(--blue);
    border-radius: 5px;
    position: relative;
    margin-top: 1rem;
}

.slider .price-progress {
    height: 5px;
    inset: 0;
    width: 0;
    position: absolute;
    border-radius: 5px;
    background-color: var(--blue);
}

.range-input {
    position: relative;
}

.range-input input {
    position: absolute;
    top: -20px;
    height: 5px;
    width: 100%;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

input[type="range"]::-webkit-slider-thumb {
    height: 1rem;
    width: 1rem;
    background-color: var(--blue);
    border-radius: 50%;
    -webkit-appearance: none;
    pointer-events: auto;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    height: 1rem;
    width: 1rem;
    border: none;
    background-color: var(--blue);
    border-radius: 50%;
    -moz-appearance: none;
    pointer-events: auto;
    cursor: pointer;
}

.product-store-wrapper {
    width: 82%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sort-btn img {
    height: 1rem;
    width: 1rem;
}

.sort-dd-menu {
    background-color: var(--yellow);
    z-index: 999 !important;
}

.product-store-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.filter-chips {
    width: 90%;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-chip {
    border: 1px solid var(--black);
    padding: .5rem 1rem;
    border-radius: 50vw;
}

.filter-chip p {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filter-chip span button {
    background: none;
    border: none;
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.filter-chip span button img {
    mix-blend-mode: difference;
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-store-body {
    padding: 1rem 0;
}

.offer-product-card {
    background: var(--gold);
}

.offer-product-card > .card-price a,
.offer-product-card > .card-price span {
    color: var(--black);
}

.offer-product-btn {
    background-color: var(--black);
}

/* ###FOOTER### */

.vip-footer {
    background-color: var(--black);
}

.foot {
    padding: 2rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.foot-top {
    display: flex;
    width: 100%;
    align-items: start;
    justify-content: space-between;
}

.foot-align {
    align-items: center;
}

.foot-top-option {
    width: 23%;
    display: flex;
    justify-content: start;
    align-items: center;
    color: var(--white);
}

.foot-top-option svg {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: contain;
    object-position: center;
    margin-right: .5rem;
}

.foot-top-option svg {
    display: none;
}

.foot-top-option img {
    height: 2.5rem;
    width: 2.5rem;
    object-fit: contain;
    object-position: center;
    margin-right: .5rem;
    display: block;
}

.foot-top-option h5 {
    margin: 0;
}

.big-foot {
    width: 48%;
    display: flex;
    align-items: start;
    justify-content: space-around;
}

.foot-search {
    width: 100%;
}

.foot-search input {
    flex-grow: 1;
}

.foot-links {
    display: flex;
    flex-direction: column;
    width: 30%;
    gap: .5rem;
}

.foot-links b {
    margin-bottom: 1rem;
}

.foot-links a {
    color: var(--white);
}

.foot-contact {
    width: 100%;
}

.foot-contact a {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.foot-contact a img {
    height: 1.2rem;
    width: 1.2rem;
    object-fit: contain;
}

.foot-data {
    flex-direction: column;
    gap: 1rem;
}

.footer-socials {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.footer-socials img {
    height: 1.2rem;
    width: 1.2rem;
    object-fit: contain;
}

.footer-socials svg {
    height: 1.2rem !important;
    width: 1.2rem !important;
    display: block;
}

.foot hr {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    color: var(--white);
}

.footer-bottom a {
    color: var(--white);
    font-size: .8rem;
}

/* ###OFFCANVAS### */

.vip-cart-offcanvas {
    background-color: var(--black);
}

.vip-cart-header {
    justify-content: space-between;
}

.vip-cart-header h5 {
    color: var(--blue);
    font-size: 2rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.vip-cart-header button {
    padding: 0;
}

.vip-cart-body {
    border: 1px solid var(--white);
    max-height: 60vh;
    border-left: none;
    border-right: none;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.cart-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--white);
    position: relative;
}

.cart-na > div {
    opacity: .5;
}

.cart-number-na {
    position: absolute;
    width: 100%;
    font-size: .6rem;
    color: var(--red);
    font-family: var(--font-heading);
    font-weight: 700;
    left: 0;
    bottom: -60%;
}

.cart-details {
    width: 50%;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-data-img img {
    height: 2rem;
    width: 2rem;
    object-fit: contain;
}

.cart-data-number span b {
    font-size: 1.2rem;
}

.cart-price {
    width: 40%;
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: end;
}

.cart-remove-btn {
    padding: 0;
}

.cart-remove-btn img {
    height: .8rem;
    width: .8rem;
    object-fit: contain;
}

.vip-cart-foot {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-total-options span {
    color: var(--grey);
    font-size: .8rem;
}

.cart-total-options p {
    margin: 0;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
}

.text-blue {
    color: var(--blue);
}

.text-yellow {
    color: var(--yellow);
}

.cart-total-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.cart-total-buttons button,
.cart-total-buttons a {
    width: 100%;
    border-radius: 5px;
    color: var(--black);
    font-weight: 600;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ###CHECKOUT### */

.checkout-table {
    display: flex;
    flex-direction: column;
    background-color: var(--light-yellow);
    gap: .2rem;
    padding: .5rem;
}

.checkout-table-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: end;
    gap: 1rem;
}

.checkout-table-row span {
    font-size: .8rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-align: end;
}

.checkout-table-row span:first-child {
    width: 50%;
    flex-grow: 1;
}

.checkout-table-row span:last-child {
    min-width: 10%;
}

.checkout-pay {
    margin-top: 1rem;
}

.redeem-conditions {
    font-size: .8rem;
    font-family: var(--font-body);
    font-weight: 400;
}

#redeemPoints {
    height: 1rem;
    width: 1rem;
    accent-color: var(--pink);
    vertical-align: middle;
    margin-right: .5rem;
}

/* ###INVOICE### */

.invoice-wrapper {
    width: 220mm;
    height: fit-content;
    max-height: 297mm;
    margin: 0 auto;
    padding: 0;
    border: 1px solid var(--black);
    outline: 0;
    box-sizing: border-box;
    padding: 1rem;
    margin-top: 2rem;
}

.invoice-top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--black);
    padding-bottom: 1rem;
}

.invoice-logo {
    display: flex;
    align-items: center;
    gap: .2rem;
    width: fit-content;
}

.invoice-logo svg {
    height: 2rem;
    width: 2rem;
    object-position: center;
    object-fit: contain;
}

.invoice-logo svg {
    display: none;
}

.invoice-logo img {
    height: 2rem;
    width: 2rem;
    object-position: center;
    object-fit: contain;
    display: block;
}

.invoice-logo span {
    text-wrap: nowrap;
    font-size: 1.2rem;
    font-weight: 500;
}

.invoice-number {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 60%;
}

.invoice-body {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.invoice-details {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
}

.invoice-information {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.invoice-information h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.invoice-info {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.invoice-table table {
    width: 100%;
    border: 1px solid var(--black);
}

.invoice-table-row th, td {
    border: 1px solid var(--black);
    text-align: center;
}

.invoice-table-row th {
    font-size: 1.1rem;
    background-color: var(--light-yellow);
    padding: .5rem;
}

.invoice-table-row td {
    padding: .2rem;
}

.invoice-total {
    font-family: var(--font-heading);
    text-align: start;
}

.invoice-foot h1 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

.invoice-foot-information {
    display: flex;
    align-items: start;
    gap: 1rem;
    justify-content: space-between;
}

.invoice-foot-info {
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.invoice-op-btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

@media print {
    .invoice-op-btns {
        display: none;
    }
}

/* ###MOBILE_ELEMENTS### */

.mobile-bottom-nav {
    display: none;
}

.mobile-product-filter {
    display: none;
}

.filter-close {
    display: none;
}

/* Category radios — natural height when few items; scroll when many (max-height is a cap only) */
#id_category {
    list-style: none;
    padding-left: 0;
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: min(14rem, 42vh);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

#id_category li {
    margin: 0;
    padding: 0.1rem 0;
}

#id_category label {
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

@media only screen and (min-width: 992px) {
    #id_category {
        max-height: min(16rem, 45vh);
    }
}

@media only screen and (max-width: 991px) and (min-width: 280px) {
    /* ###COMMON### */
    .mob-100w {
        width: 100%;
        margin: auto;
    }

    .vip-btn {
        padding: .5rem .8rem;
        font-size: .8rem;
    }

    .page-heading {
        font-size: 2rem;
        font-weight: 600;
    }

    .subheading {
        font-size: 1.2rem;
    }

    .block-heading h6 {
        font-size: 1.5rem;
    }

    .mob-sub-head {
        font-size: 1.3rem !important;
    }

    .back-to-top-div {
        bottom: 10%;
    }

    .layout-section {
        flex-direction: column;
    }

    .logo a span {
        display: none;
    }

    /* ###NAVBAR### */
    .vip-nav {
        padding: .5rem 1rem;
        margin-top: 1rem;
    }

    .vip-nav-option {
        display: none;
    }

    /* ###ADVANCE_SEARCH_MODAL### */
    .hero-search-option button {
        font-size: .6rem !important;
    }

    .modal-radio-container, .modal-advance-input {
        align-items: unset;
        flex-direction: column;
    }

    .modal-search-radio {
        flex-direction: row;
    }

    .modal-information button {
        min-width: 10rem;
    }

    .digit-modal-container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .digit-modal-container input {
        text-align: center;
        width: 25% !important;
    }

    /* ###INDEX### mobile: single column so sim tiles + WhatsApp use full width (not squeezed beside badge) */
    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        max-height: none;
        padding-bottom: 1.5rem;
        padding-inline: 0;
        overflow: visible;
        margin-top: clamp(0.65rem, 3vw, 1.35rem);
        padding-top: 0.25rem;
    }

    /* Logo / badge first — then headline + search + tiles + WhatsApp */
    .hero-img {
        display: flex;
        order: 1;
        width: 100%;
        max-width: 11rem;
        margin: 0.35rem auto 0;
        min-height: 0;
        align-self: center;
        justify-content: center;
    }

    .hero-banner-text {
        height: min(26vw, 9rem);
        width: min(26vw, 9rem);
    }

    .hero-banner-img {
        height: min(13vw, 4.5rem);
        width: min(13vw, 4.5rem);
    }

    .hero-text {
        order: 2;
        margin: 0.75rem 0 0;
        width: 100%;
        max-width: 100%;
        padding-inline: clamp(0.65rem, 3.5vw, 1.15rem);
        box-sizing: border-box;
    }

    .hero-text h1 {
        font-size: clamp(1.6rem, 5.5vw, 2.35rem);
        min-height: auto;
        line-height: 1.15;
    }

    .hero-whatsapp-strip {
        margin-top: 0.85rem;
        padding: 1rem clamp(0.35rem, 2vw, 0.75rem) 0;
        width: 100%;
        max-width: 22rem;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .hero-whatsapp-strip-title {
        font-size: 0.72rem;
        margin-bottom: 0.6rem;
    }

    .hero-whatsapp-links {
        margin-top: 0;
        gap: 0.55rem 0.65rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
        max-width: 100%;
    }

    .hero-whatsapp-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.45rem;
        min-height: 2.65rem;
    }

    .guide-steps {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .guide-step {
        width: 45%;
    }

    .guide-step svg {
        height: 3rem;
        width: 100%;
        object-fit: contain;
    }

    .guide-step p {
        font-size: .8rem;
        font-weight: 500;
    }

    .product-wrapper {
        gap: 1.5rem 1rem;
    }

    .product-card {
        width: 100%;
    }

    .card-sum {
        padding: .2rem .5rem;
    }

    .card-sum span {
        padding-inline: unset;
    }

    .card-price {
        align-items: start;
        padding: .2rem .5rem;
    }

    .card-link {
        font-size: 1rem;
    }

    .card-add-cart button {
        width: 60%;
        font-size: 1.1rem;
    }

    .index-info-section {
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .index-information {
        width: 45%;
    }

    .index-jio-activation {
        padding: 1.5rem 1rem 2rem;
        gap: 1.35rem;
    }

    .index-jio-head {
        flex-direction: column;
        align-items: stretch;
    }

    .index-jio-head-text {
        max-width: 100%;
    }

    .index-jio-head-visual {
        justify-content: center;
    }

    .index-jio-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .index-jio-step {
        padding: 1.2rem 1rem 1.35rem;
    }

    .index-information img {
        height: 2rem;
        width: 2rem;
        object-fit: contain;
        aspect-ratio: 1 / 1;
    }

    .index-information h5 {
        font-size: 1rem;
    }

    .index-jio-foot-phone {
        font-size: 0.85rem;
    }

    /* ###LOGIN### */
    .login-container {
        flex-direction: column-reverse;
        align-items: unset;
        justify-content: start;
        overflow-x: hidden;
        gap: 1rem;
    }

    .login-data {
        width: 90%;
    }

    .login-image,
    .login-layout,
    .sign-up-image,
    .sign-up-data {
        width: 100% !important;
    }

    .login-img {
        height: 20vh;
    }

    .sign-in-layout > div {
        width: 100%;
    }

    .ap-otp-input {
        padding: .5rem;
        width: 15%;
    }

    /* ###INFORMATION### */
    .information input {
        padding: .5rem .8rem;
        font-size: .8rem;
        width: 100%;
    }

    /* ###USER_GUIDE### */
    .guideline {
        width: 100%;
        gap: .5rem;
        align-items: start;
    }

    .guide-wrapper {
        gap: 2rem;
    }

    .guide-number {
        display: none;
    }

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

    .guide-data {
        width: 80%;
        text-align: justify;
    }

    .guide-data-head h4 {
        font-size: 1rem;
    }

    .guide-data-body p {
        font-size: .8rem;
    }

    /* ###404### */
    .page-not-found img {
        height: 100%;
        width: 100%;
    }

    /* ###USER_PAGES### */
    .user-information-form {
        width: 100%;
    }

    .wallet-balance {
        flex-direction: column;
        gap: 1rem;
    }

    .balance {
        width: 100%;
    }

    .my-order-form {
        width: 40%;
    }

    .order-card-body {
        flex-direction: column;
        gap: 1rem;
        justify-content: space-between;
    }

    .order-card-body-data {
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .order-card-body-options {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .order-card-img svg {
        height: 5rem;
        width: 5rem;
        object-fit: cover;
    }

    .order-confirmation {
        width: 100%;
    }

    .order-confirmation-data span:first-child {
        width: 30%;
    }

    .block-heading-btn button {
        flex-grow: 1;
    }

    .upc-container {
        width: 100%;
    }

    .upc-container p {
        font-size: 1.2rem;
    }

    .delete-terms {
        justify-content: space-between;
    }

    .delete-terms input[type=checkbox] {
        height: unset;
        width: unset;
    }

    /* ###CAREER### */
    .careerSection {
        margin: 0;
        width: 100%;
        gap: 1rem;
    }

    /* ###CONTACT### */
    .contact-us-information {
        align-items: unset;
        justify-content: unset;
        padding-bottom: 3rem;
        flex-direction: column;
        gap: 2rem;
    }

    .information-block {
        width: 100%;
        gap: 1rem;
        height: 10rem;
    }

    .block-foot {
        width: 100%;
    }

    /* ###STORE### */
    .filters {
        width: 100%;
        max-width: 100vw;
        height: 100dvh;
        height: 100vh;
        top: 0;
        left: -100%;
        position: fixed;
        z-index: 99;
        overflow-y: auto;
        overflow-x: hidden;
        padding: 0.75rem 1rem 5rem 1rem;
        box-sizing: border-box;
        transition: left .5s ease;
    }

    .filter-close {
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        right: 2%;
        top: 3%;
        background-color: var(--blue);
        border-radius: 50vw;
        padding: .5rem;
    }

    .filter-close img {
        height: 1rem;
        width: 1rem;
        object-fit: contain;
    }

    #sidebar-anime:checked ~ .filters {
        left: 0;
    }

    #sidebar-anime:checked ~ .overlay {
        background: linear-gradient(#0003, #0000008d);
        height: 100%;
        width: 100%;
        position: fixed;
        top: 0;
        left: 0;
        transition: background .5s ease;
    }

    .product-store-head {
        gap: 1rem;
        align-items: start;
        flex-direction: column-reverse;
    }

    .filter-field {
        min-height: fit-content;
    }

    .filter-heading {
        font-size: 1.15rem;
    }

    .filter-form {
        gap: 0.65rem;
    }

    .filter-form label,
    .cat-span {
        font-size: 0.88rem;
        margin-bottom: 0.1rem;
    }

    .filter-input-group input {
        min-height: 2.1rem;
        font-size: 0.88rem;
        padding: 0.3rem 0.5rem;
    }

    .price-fields {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .filter-range-filed {
        width: 100%;
        min-width: 0;
    }

    .filter-range-filed input {
        margin-top: 0.25rem;
    }

    #id_category {
        max-height: min(11rem, 32vh);
    }

    #id_category label {
        font-size: 0.85rem;
    }

    .categories-field {
        gap: 0.5rem;
    }

    .filter-chips {
        width: 100%;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding-bottom: 1rem;
    }

    .filter-chip p {
        text-wrap: nowrap;
    }

    .store-banner-item a img {
        object-fit: contain;
    }

    .product-store-wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    .shot {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .store-sortby {
        flex: 1;
        min-width: 0;
        max-width: 100%;
    }

    .store-sortby .form-select {
        font-size: 0.85rem;
        padding: 0.35rem 2rem 0.35rem 0.5rem;
        width: 100%;
        max-width: 100%;
    }

    .mobile-product-filter {
        display: flex;
    }

    .mobile-product-filter img {
        width: 1rem;
        height: 1rem;
    }

    /* ###MULTIPLE_ORDERS### */
    .multi-order-container {
        flex-direction: column;
    }

    .multi-order-container > .block-heading {
        width: 100%;
    }

    .multi-order-container > .block-heading-btn {
        width: 100%;
        align-items: center;
        margin-top: 1rem;
    }

    .multi-order-info {
        overflow: scroll;
        gap: 1rem;
    }

    .multi-order-data {
        text-wrap: nowrap;
    }

    .multi-order-data span {
        font-size: .8rem;
        margin-bottom: .5rem;
    }

    /* ###FOOTER### */
    .vip-footer {
        display: flex;
        flex-direction: column;
        padding-bottom: 6rem; /* space so bottom sticky bar doesn't cover footer */
    }

    /* Make footer readable on small screens */
    .vip-footer .foot {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .vip-footer .foot-top {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .vip-footer .foot-top-option {
        width: 100% !important;
        justify-content: center;
        text-align: center;
    }

    .vip-footer .big-foot {
        width: 100% !important;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .vip-footer .foot-links {
        width: 100% !important;
        align-items: center;
        text-align: center;
    }

    .vip-footer .foot-links a {
        font-size: 0.9rem;
    }

    .vip-footer .footer-socials {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .vip-footer .foot-top-option img {
        margin-right: 0 !important;
    }

    /* ###MOBILE_BOTTOM_BAR### */
    .mobile-bottom-nav {
        display: flex;
        position: sticky;
        bottom: 0;
        background-color: var(--black);
        z-index: 99;
        padding: 1rem 2rem;
        align-items: center;
        justify-content: space-between;
    }

    .mob-nav-dd button {
        padding: 0 !important;
    }

    .mac-btns button {
        min-width: 40% !important;
    }

}

@media only screen and (max-width: 991px) and (min-width: 550px) {

        .logo a span {
        display: unset;
    }

    .hero-section {
        max-height: unset;
    }

    .back-to-top-div {
        bottom: 20%;
    }

    .filters {
        border-radius: 0;
        width: 40%;
    }

    .store-banner-item a img {
        object-fit: cover;
    }

    /* Tablet: sectionWrapper uses align-items:center — wrapper was shrink-to-fit, so
       .product-card { width:48% } resolved against a tiny width (paper-thin cards). */
    .product-wrapper {
        align-self: stretch;
        width: 100%;
        max-width: 100%;
        padding-inline: clamp(0.75rem, 3vw, 1.5rem);
        box-sizing: border-box;
    }

    .product-card {
        width: min(20rem, calc(50% - 0.75rem));
        max-width: 20rem;
        flex: 0 1 auto;
    }

    .order-card-body-data {
        justify-content: unset;
        gap: 1rem;
    }

    .order-card-img {
        width: 30%;
    }

    .page-not-found {
        height: 80dvh;
    }

    .page-not-found img {
        object-fit: contain;
        height: 40%;
        width: 40%;
    }

    .page-not-found h4 {
        font-size: 1rem;
    }

    .modal-information {
        min-height: fit-content;
    }

    .modal-radio-container, .modal-advance-input {
        align-items: center;
        flex-direction: row;
    }

    .delete-terms input[type=checkbox] {
        height: 1.5rem;
        width: 1.5rem;
    }

    .delete-user-form-btn button {
        flex-grow: 1;
    }

    .ap-otp-input {
        width: 10%;
    }

    .multi-order-container > .block-heading-btn {
        align-items: start;
    }
}

@media only screen and (max-width: 991px) and (min-width: 768px) {
    .tab-appear-section {
        flex-direction: column-reverse;
        justify-content: center;
        height: fit-content;
        overflow-x: hidden;
    }

    .tab-appear {
        display: flex;
        width: 100%;
        height: 30dvh;
    }

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

    .information input {
        width: 40%;
    }

    .back-to-top-div {
        bottom: 7%;
    }

    .mobile-bottom-nav {
        width: 90%;
        margin: auto;
        border-radius: 50vw;
    }

    .guideline {
        align-items: center;
    }

    .page-not-found img {
        height: 100%;
        width: 100%;
    }

    .page-not-found h4 {
        font-size: 1.5rem;
    }

    .contact-us-information {
        align-items: start;
        justify-content: space-between;
        padding-bottom: 3rem;
        flex-direction: row;
        gap: 2rem;
    }

    .order-card-body {
        flex-direction: row;
    }

    .order-card-img {
        width: fit-content;
    }

    .order-card-body-options button {
        text-wrap: nowrap;
    }

    .order-card-body-options {
        flex-direction: column;
        width: fit-content;
    }

    .filter-close {
        top: 2%;
    }

    .wallet-balance {
        flex-direction: row;
    }


    .ap-otp-input {
        width: 7%;
    }

}

@media only screen and (max-width: 1199px) and (min-width: 992px) {
    .vip-btn {
        padding: .5rem .8rem;
        font-size: .8rem;
    }

    .mob-100w {
        width: 50%;
        margin: 0;
        margin-right: auto;
    }

    .tab-btn {
        margin-left: auto;
        margin-right: 0;
    }

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

    .vip-nav-options, .vip-nav-option {
        gap: 1rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        min-height: 10rem;
    }

    .hero-banner-text {
        height: 30rem;
        width: 30rem;
    }

    .hero-banner-img {
        height: 15rem;
        width: 15rem;
    }

    .guide-step {
        width: 15%;
    }

    .product-card {
        width: 18rem;
    }

    .index-jio-activation {
        min-height: fit-content;
    }

    .filters {
        width: 28%;
    }

    .product-store-wrapper {
        width: 70%;
    }

    .filter-chips {
        width: 80%;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .filter-chip p {
        text-wrap: nowrap;
    }

    .careerSection,
    .order-confirmation,
    .supporting-pages,
    .upc-container,
    .user-information-form {
        width: 80%;
    }

    .about-us-wrapper > h3 {
        font-size: 1.5rem;
        margin: 0;
    }

    .my-order-form {
        width: fit-content;
    }

}

@media only screen and (max-width: 1450px) and (min-width: 1200px) {
    .mob-100w {
        width: 50%;
        margin: 0;
        margin-right: auto;
    }

    .tab-btn {
        margin: 0;
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.8rem;
        min-height: 10rem;
    }

    .careerSection,
    .order-confirmation,
    .supporting-pages,
    .upc-container,
    .user-information-form {
        width: 80%;
    }

    .my-order-form {
        width: fit-content;
    }

    .filters {
        width: 25%;
    }

    .product-store-wrapper {
        width: 75%;
    }

    .filter-chips {
        width: 95%;
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: nowrap;
        overflow-x: scroll;
    }

    .filter-chip p {
        text-wrap: nowrap;
    }

    .ap-otp-input {
        width: 8%;
    }
}

@media only screen and (max-width: 1650px) and (min-width: 1451px) {

    .index-jio-activation {
        min-height: fit-content;
    }

    .mob-100w {
        width: 30%;
    }

    .tab-btn {
        margin: 0;
        width: 100%;
    }
}

@media only screen and (max-width: 1920px) and (min-width: 1651px) {
    .tab-btn {
        margin: 0;
        width: 100%;
    }
}

@media only screen and (min-width: 1921px) {

    .index-jio-activation {
        min-height: fit-content;
    }

    .mob-100w {
        width: 30%;
    }

    .custom-container {
        width: 70%;
        margin: auto;
    }

    .tab-btn {
        margin: 0;
        width: 100%;
    }
}

.modal-mac-body {
    background-color: var(--white);
    border-radius: 10px;
}

.mac-form {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    align-items: center;
    text-align: center;
}

.mac-btns {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.mac-btns button {
    min-width: 20%;
}

/* ###SELECT_SEARCH### */

.select2-container {
    flex-grow: 1;
    width: 100% !important;
    border-radius: 20px !important;
}

.select2-dropdown {
    border: 1px solid var(--black);
}

.select2-container--open .select2-dropdown {
    z-index: 9999;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--blue) !important;
    color: var(--white) !important;
}

.select2-container--default .select2-selection--single {
    min-height: 2.5rem;
    width: 100%;
    display: flex;
    align-items: center;
    padding: .5rem 1rem;
    border-radius: 20px;
    color: var(--black);
    border: 1px solid var(--black);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: unset;
    right: 2%;
}

.select2-selection__rendered {
    font-size: 1rem !important;
    font-weight: 400 !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--black) !important;
}

.select2-search .select2-search--inline,
.select2-search__field {
    margin: 0 !important;
    width: 100% !important;
    height: 0 !important;
    min-height: 2.5rem !important;
    border-radius: 0 !important;
}

.modal-message-content {
    background: transparent;
}

.modal-message-body {
    background-color: var(--white);
    border-radius: 20px;
    min-height: 10rem;
}

.modal-message-body p {
    font-weight: 500;
    font-size: 1.2rem;
}

.msg-ul {
    text-decoration: underline;
}

.foot-cat-update {
    padding: 2rem 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    color: var(--white);
    gap: .5rem;
}

.foot-cat-update-head {
    color: var(--white);
    font-size: 1.2rem;
}

.foot-cat-update a {
    color: var(--white);
    border-right: 1px solid var(--white);
    padding-right: .2rem;
}

/* Narrow phones: two-column grid + dense cards (store + index featured + favorites) */
@media only screen and (max-width: 549px) {
    .product-wrapper {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.5rem 0.4rem;
        align-items: stretch;
        justify-items: stretch;
        width: 100%;
        max-width: 100%;
        padding-inline: 0.45rem;
        padding-bottom: 1.75rem;
        box-sizing: border-box;
    }

    .product-wrapper > .order-pagination {
        grid-column: 1 / -1;
        justify-self: center;
        width: 100%;
        text-align: center;
    }

    /* Single card in a 2-col grid was ~half the screen; use one column, centered, readable width */
    .product-wrapper:has(> .product-card:only-child) {
        grid-template-columns: 1fr;
        max-width: min(24rem, 100%);
        margin-inline: auto;
        justify-items: stretch;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card {
        max-width: 100%;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card .card-head h4 {
        font-size: clamp(1.4rem, 7vw, 1.85rem);
        letter-spacing: 0.035em;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card .card-sum {
        font-size: 0.72rem;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card .card-price {
        font-size: 1.05rem;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card .card-link {
        font-size: 0.78rem;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card .card-price span i {
        font-size: 1.2rem;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card .card-add-cart .card-btn,
    .product-wrapper:has(> .product-card:only-child) > .product-card .card-add-cart .vip-btn.card-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.55rem !important;
    }

    .product-card {
        width: 100%;
        max-width: none;
        margin-inline: 0;
        min-width: 0;
        padding: 0.65rem 0 0.55rem;
        gap: 0.4rem;
        border-radius: 16px;
        box-shadow: rgba(90, 58, 2, 0.18) 0 6px 14px, rgba(17, 17, 26, 0.06) 0 2px 8px;
        /* Mobile reading order: big number → price → sum total (compact) → cart */
        display: flex;
        flex-direction: column;
    }

    .product-card .card-head {
        order: 1;
        padding-inline: 0.25rem;
        padding-block: 0.15rem 0.05rem;
    }

    .product-card .card-price {
        order: 2;
        flex-direction: column;
        align-items: stretch;
        gap: 0.2rem;
        font-size: clamp(0.85rem, 3vw, 1rem);
        padding: 0.2rem 0.4rem 0.15rem;
        text-align: center;
    }

    .product-card .card-sum {
        order: 3;
        font-size: clamp(0.6rem, 2.1vw, 0.72rem);
        padding: 0.12rem 0.35rem;
        gap: 0.35rem;
        margin-inline: 0.25rem;
        border-radius: 8px;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
    }

    .product-card .card-sum span {
        line-height: 1.2;
        min-width: 0;
        text-align: left;
        flex: 1 1 auto;
    }

    .product-card .card-add-cart {
        order: 4;
        padding-inline: 0.4rem;
        width: 100%;
        box-sizing: border-box;
        padding-bottom: 0.05rem;
    }

    /* VIP number: higher minimum size + tighter spacing so digits read clearly in 2-col grid */
    .product-card .card-head h4 {
        font-size: clamp(1.12rem, 5.2vw + 0.42rem, 1.48rem);
        letter-spacing: 0.025em;
        line-height: 1.18;
        font-weight: 800;
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    .product-card .card-price span i {
        font-size: clamp(1rem, 3.8vw, 1.18rem);
        font-style: normal;
        font-weight: 800;
        display: inline-block;
        margin-top: 0.05rem;
    }

    .product-card .card-link {
        font-size: clamp(0.65rem, 2.2vw, 0.76rem);
        line-height: 1.25;
    }

    .product-card .card-favorite-btn {
        min-width: 1.75rem;
        height: 1.55rem;
        padding: 0 0.3rem !important;
        flex-shrink: 0;
    }

    .product-card .card-favorite-icon {
        width: 0.85rem;
        height: 0.85rem;
    }

    .product-card .card-add-cart .card-btn,
    .product-card .card-add-cart .vip-btn.card-btn {
        width: 100%;
        max-width: 100%;
        justify-content: center;
        padding: 0.42rem 0.45rem !important;
        font-size: clamp(0.72rem, 2.7vw, 0.85rem);
        gap: 0.35rem;
        box-sizing: border-box;
    }

    .product-card .card-btn img {
        height: 1rem;
        width: 1rem;
        flex-shrink: 0;
    }

    .index-featured-numbers .subheading {
        margin-bottom: 0.65rem;
    }

    .index-featured-numbers .view-more-navigation {
        margin-top: 0.25rem;
    }
}

/* Very narrow: single column — full-width card, number stays dominant */
@media only screen and (max-width: 340px) {
    .product-wrapper {
        grid-template-columns: 1fr;
        max-width: min(20rem, 100%);
        margin-inline: auto;
    }

    .product-card .card-head h4 {
        font-size: clamp(1.22rem, 6.2vw, 1.55rem);
        letter-spacing: 0.03em;
    }

    .product-wrapper:has(> .product-card:only-child) > .product-card .card-head h4 {
        font-size: clamp(1.45rem, 7.5vw, 1.9rem);
    }

    .product-card .card-sum {
        font-size: 0.7rem;
    }

    .product-card .card-price {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .product-card .card-price span i {
        font-size: 1.12rem;
    }
}

/* Checkout: show every cart line; highlight items that cannot be paid for */
.checkout-cart-row-blocked {
    background: rgba(220, 53, 69, 0.06);
}
.checkout-cart-not-sellable {
    color: #b02a37;
    font-size: 0.9em;
    font-weight: 600;
}

/* Cart drawer: show unavailable lines so they can be removed */
.cart-data-line-unavailable {
    opacity: 0.92;
    border-left: 3px solid #c9a227;
    padding-left: 0.5rem;
    margin-bottom: 0.35rem;
}
.cart-line-unavailable-note {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #b02a37;
    margin-top: 0.2rem;
    line-height: 1.25;
}
.cart-price-na {
    color: #6c757d;
    font-weight: 600;
}