.container {
        --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-right: auto;
    margin-left: auto;
}



/* =========================================================
   GOKRIPADHAM
   INTERNATIONAL ORDERS PAGE
   ========================================================= */

.international-page {
    --io-green: #31530D;
    --io-green-dark: #23400A;
    --io-green-soft: #edf4df;

    --io-orange: #E9761B;
    --io-gold: #D5A23A;
    --io-gold-light: #F5D98B;

    --io-cream: #FFF9ED;
    --io-cream-dark: #F5E8C9;

    --io-brown: #69451F;
    --io-text: #26311F;

    --io-border: rgba(49, 83, 13, 0.16);

    color: var(--io-text);
}


/* =========================================================
   GLOBAL
   ========================================================= */

.international-page img {
    max-width: 100%;
}

.international-page a {
    text-decoration: none;
}

.international-page button,
.international-page input,
.international-page select {
    font: inherit;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.international-page .container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.io-section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.io-section-label {
    display: inline-block;
    color: var(--io-green);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.io-section-heading h2 {
    margin: 0;
    color: var(--io-green-dark);
    font-family: var(--font-heading);
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.io-section-heading p {
    margin: 14px 0 0;
    font-size: 15px;
    color: #68705F;
}


/* =========================================================
   HERO
   ========================================================= */

.io-hero {
    padding: 234px 0 0px;
    position: relative;
    overflow: hidden;
    min-height: 590px;
    background:
        linear-gradient(
            90deg,
            #fff8e7 0%,
            #fff8e7 46%,
            #f4edcf 72%,
            #edf0d5 100%
        );
}

.io-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;

    background:
        radial-gradient(
            circle at 78% 45%,
            rgba(255, 255, 255, 0.85),
            transparent 32%
        ),
        radial-gradient(
            circle at 20% 20%,
            rgba(213, 162, 58, 0.12),
            transparent 30%
        );
}

.io-hero-container {
    position: relative;
    min-height: 590px;

    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;

    gap: 30px;
    padding-top: 35px;
    padding-bottom: 35px;
}

.io-hero-content {
    position: relative;
    z-index: 2;
}

.io-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 7px 18px;

    border-radius: 999px;

    background: #e9c342;
    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 700;
}

.io-hero h1 {
    max-width: 670px;

    margin: 20px 0 12px;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: clamp(42px, 5vw, 68px);
    line-height: 0.98;
    letter-spacing: -1.8px;
}

.io-hero h1 span {
    display: block;
}

.io-hero-description {
    max-width: 510px;

    margin: 0;

    color: #4E4E38;

    font-size: 17px;
    line-height: 1.65;
}

.io-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;

    margin-top: 28px;
}

.io-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    min-height: 46px;
    padding: 0 23px;

    border-radius: 999px;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.io-btn:hover {
    transform: translateY(-2px);
}

.io-btn-primary {
    background: var(--io-green);
    color: #ffffff;
    box-shadow: 0 8px 22px rgba(49, 83, 13, 0.18);
}

.io-btn-primary:hover {
    background: var(--io-green-dark);
    color: #ffffff;
}

.io-btn-outline {
    border: 1px solid var(--io-green);
    color: var(--io-green);
    background: rgba(255,255,255,0.35);
}

.io-btn-outline:hover {
    background: #ffffff;
    color: var(--io-green);
}

.io-hero-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(80px, 1fr));

    max-width: 570px;

    margin-top: 32px;
}

.io-hero-feature {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 0 12px;

    text-align: center;
}

.io-hero-feature:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 5px;

    width: 1px;
    height: 62px;

    background: rgba(49, 83, 13, 0.25);
}

.io-feature-icon {
    width: 47px;
    height: 47px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid var(--io-green);
    border-radius: 50%;

    color: var(--io-green);
    font-size: 19px;

    margin-bottom: 7px;
}

.io-hero-feature strong {
    color: var(--io-green-dark);
    font-size: 12px;
}

.io-hero-feature span {
    color: #6B705B;
    font-size: 11px;
}


/* =========================================================
   HERO PRODUCT
   ========================================================= */

.io-hero-product {
    position: relative;

    min-height: 510px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.io-product-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.55);

    filter: blur(2px);
}

.io-ghee-card {
    position: relative;
    z-index: 2;

    width: 255px;
    height: 330px;

    display: flex;
    flex-direction: column;
    align-items: center;

    border-radius: 28px 28px 32px 32px;

    background:
        linear-gradient(
            110deg,
            #b77713,
            #f2c34e 18%,
            #d99b24 45%,
            #f2c95b 68%,
            #a86b0c
        );

    border: 4px solid #e7bb45;

    box-shadow:
        0 28px 45px rgba(78, 53, 15, 0.28),
        inset 0 0 18px rgba(255,255,255,0.22);

    transform: rotate(-2deg);
}

.io-ghee-lid {
    width: 220px;
    height: 65px;

    margin-top: -23px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background:
        repeating-linear-gradient(
            90deg,
            #a66b12 0,
            #c98c29 3px,
            #e0b15b 6px
        );

    border: 3px solid #9c6510;

    color: #3E2A0C;

    line-height: 0.85;
}

.io-ghee-lid span {
    font-size: 10px;
}

.io-ghee-lid strong {
    font-family: var(--font-heading);
    font-size: 19px;
}

.io-ghee-lid small {
    font-size: 8px;
}

.io-ghee-label {
    width: 185px;

    margin-top: 55px;
    padding: 24px 12px;

    text-align: center;

    background: rgba(255, 239, 169, 0.92);

    border: 2px solid rgba(112, 70, 7, 0.55);

    color: #3C310D;
}

.io-label-small {
    display: block;
    font-size: 11px;
    font-weight: 700;
}

.io-ghee-label strong {
    display: block;

    margin: 3px 0;

    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1;
}

.io-ghee-label > span:not(.io-label-small) {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.io-ghee-label small {
    display: block;

    margin-top: 10px;

    font-size: 9px;
}

.io-cow-decoration {
    position: absolute;

    z-index: 3;

    right: 8%;
    bottom: 13%;

    font-size: 100px;

    filter: drop-shadow(
        0 15px 15px rgba(50, 35, 10, 0.18)
    );
}

/* #io-shipping-note1 {
    top: 190px;
    right: 6px;
} */

.io-shipping-note {
    /* position: absolute;

    right: -10px;
    top: 90px; */

    z-index: 4;

    display: flex;
    flex-direction: column;
    gap: 5px;

    min-width: 145px;

    padding: 15px;

    background: rgba(255,255,255,0.70);

    border: 1px solid rgba(49,83,13,0.14);
    border-radius: 15px;

    backdrop-filter: blur(8px);

    box-shadow: 0 10px 25px rgba(50,50,20,0.08);
}

.io-shipping-note strong {
    color: var(--io-green-dark);
    font-family: var(--font-heading);
    font-size: 15px;

    margin-bottom: 3px;
}

.io-shipping-note span,
.io-shipping-note small {
    font-size: 11px;
}

.io-shipping-note small {
    color: #686851;
}


/* =========================================================
   NRI
   ========================================================= */

.io-nri-section {
    padding: 0;
    background: var(--io-cream);
}

.io-nri-card {
    min-height: 190px;

    display: grid;
    grid-template-columns: 0.85fr 1.5fr;

    overflow: hidden;

    background: #f6e3b7;

    border-bottom: 1px solid rgba(105,69,31,0.12);
}

.io-nri-image {
    position: relative;

    min-height: 190px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #f5d99e 0%,
            #d99c61 60%,
            #7b7752 100%
        );
}

.io-nri-sun {
    position: absolute;

    width: 65px;
    height: 65px;

    top: 38px;
    right: 22%;

    border-radius: 50%;

    background: rgba(255,245,189,0.85);
}

.io-nri-silhouette {
    position: absolute;

    left: 27%;
    bottom: -7px;

    font-size: 115px;

    filter: grayscale(1);
    opacity: 0.85;
}

.io-nri-content {
    display: grid;

    grid-template-columns: 1.15fr 0.75fr;
    align-items: center;

    column-gap: 35px;

    padding: 30px 55px;
}

.io-nri-content h2 {
    margin: 5px 0 8px;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 30px;
    line-height: 1.12;
}

.io-nri-content h2 span {
    color: #4C351A;
}

.io-nri-content p {
    max-width: 480px;

    margin: 0;

    color: #574832;

    font-size: 13px;
}

.io-nri-content blockquote {
    margin: 0;

    padding-left: 25px;

    border-left: 1px solid rgba(102,68,31,0.5);

    color: #61371F;

    font-family: var(--font-heading);
    font-size: 22px;
    font-style: italic;
    line-height: 1.25;
}


/* =========================================================
   WHY
   ========================================================= */

.io-why-section {
    padding: 65px 0 55px;

    background:
        radial-gradient(
            circle at 50% 0,
            rgba(221,190,111,0.12),
            transparent 35%
        ),
        var(--io-cream);
}

.io-why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);

    border-top: 1px solid rgba(49,83,13,0.22);
    border-bottom: 1px solid rgba(49,83,13,0.22);
}

.io-why-card {
    position: relative;

    padding: 25px 18px;

    text-align: center;
}

.io-why-card:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 20px;
    bottom: 20px;

    width: 1px;

    background: rgba(49,83,13,0.25);
}

.io-round-icon {
    width: 64px;
    height: 64px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin: 0 auto 13px;

    border: 1px solid #D8A841;
    border-radius: 50%;

    background: #fffaf0;

    font-size: 26px;
}

.io-why-card h3 {
    margin: 0;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 15px;
}

.io-why-card p {
    margin: 6px 0 0;

    color: #69705D;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================================
   PROCESS
   ========================================================= */
/* =========================================================
   TRADITIONAL BILONA JOURNEY
   ========================================================= */

.io-process-section {
    padding: 65px 0 55px;

    background:
        linear-gradient(
            135deg,
            #edf4df,
            #f8f3dc
        );
}


/* =========================================================
   PROCESS
   ========================================================= */

.io-process {
    display: flex;

    align-items: flex-start;
    justify-content: center;

    gap: 10px;

    width: 100%;
}


/* ---------------------------------------------------------
   PROCESS ITEM
   --------------------------------------------------------- */

.io-process-item {
    flex: 1;

    width: 100%;
    max-width: 185px;

    text-align: center;
}


/* ---------------------------------------------------------
   NUMBER
   --------------------------------------------------------- */

.io-process-number {
    color: #9D752B;

    font-size: 11px;
    font-weight: 700;

    margin-bottom: 8px;

    letter-spacing: 0.5px;
}


/* ---------------------------------------------------------
   PROCESS IMAGE
   --------------------------------------------------------- */

.io-process-image {
    position: relative;

    width: 96px;
    height: 96px;

    margin: 0 auto 14px;

    overflow: hidden;

    border: 2px solid #D5A23A;

    border-radius: 50%;

    background: #fffaf0;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* IMAGE */

.io-process-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    border-radius: 50%;

    transition:
        transform 0.4s ease;
}


/* IMAGE HOVER */

.io-process-item:hover .io-process-image {
    transform: translateY(-5px);

    border-color: var(--io-orange);

    box-shadow:
        0 5px 0 #ffffff,
        0 0 0 6px rgba(213, 162, 58, 0.11),
        0 14px 25px rgba(105, 69, 31, 0.15);
}


.io-process-item:hover .io-process-image img {
    transform: scale(1.07);
}


/* ---------------------------------------------------------
   PROCESS TITLE
   --------------------------------------------------------- */

.io-process-item h3 {
    margin: 0;

    color: var(--io-green-dark);

    font-family: var(--font-heading);

    font-size: 15px;

    line-height: 1.25;
}


/* ---------------------------------------------------------
   PROCESS DESCRIPTION
   --------------------------------------------------------- */

.io-process-item p {
    margin: 6px 0 0;

    color: #6B715F;

    font-size: 11px;

    line-height: 1.5;
}


/* ---------------------------------------------------------
   PROCESS ARROWS
   --------------------------------------------------------- */

.io-process-arrow {
    flex: 0 0 auto;

    margin-top: 69px;

    color: var(--io-green);

    font-size: 19px;

    opacity: 0.75;

    transition:
        transform 0.25s ease,
        color 0.25s ease;
}


.io-process-item:hover + .io-process-arrow {
    color: var(--io-orange);

    transform: translateX(3px);
}


/* =========================================================
   OUR PROMISE
   ========================================================= */

.io-promise {
    width: 100%;

    margin: 45px auto 0;

    padding: 10px 18px 12px;

    border-radius: 8px;

    background:
        linear-gradient(
            90deg,
            #174c28,
            #205b2e,
            #174c28
        );

    color: #ffffff;

    box-shadow:
        0 8px 20px rgba(49, 83, 13, 0.14);
}


/* ---------------------------------------------------------
   PROMISE HEADING
   --------------------------------------------------------- */

.io-promise-heading {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 9px;

    margin-bottom: 8px;

    color: #f5d98b;

    font-family: var(--font-heading);

    font-size: 13px;

    font-weight: 700;

    letter-spacing: 1px;
}


.io-promise-heading i {
    font-size: 9px;

    opacity: 0.9;
}


/* ---------------------------------------------------------
   PROMISE GRID
   --------------------------------------------------------- */

.io-promise-grid {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    align-items: center;
}


/* ---------------------------------------------------------
   PROMISE ITEM
   --------------------------------------------------------- */

.io-promise-item {
    position: relative;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 42px;

    padding: 3px 10px;

    text-align: left;
}


/* DIVIDERS */

.io-promise-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;

    top: 3px;
    bottom: 3px;

    width: 1px;

    background:
        rgba(255, 255, 255, 0.22);
}


/* ---------------------------------------------------------
   PROMISE ICON
   --------------------------------------------------------- */

.io-promise-icon {
    width: 34px;
    height: 34px;

    flex: 0 0 34px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid #d5a23a;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    color: #f5d98b;

    font-size: 14px;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        color 0.25s ease;
}


/* ---------------------------------------------------------
   PROMISE TEXT
   --------------------------------------------------------- */

.io-promise-text {
    display: flex;

    flex-direction: column;

    gap: 1px;
}


.io-promise-text strong {
    color: #ffffff;

    font-size: 9px;

    font-weight: 700;

    line-height: 1.25;

    white-space: nowrap;
}


.io-promise-text span {
    color:
        rgba(255, 255, 255, 0.72);

    font-size: 8px;

    line-height: 1.25;

    white-space: nowrap;
}


/* ---------------------------------------------------------
   PROMISE HOVER
   --------------------------------------------------------- */

.io-promise-item:hover .io-promise-icon {
    transform: translateY(-2px);

    background: #f5d98b;

    color: var(--io-green-dark);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .io-process {
        flex-wrap: wrap;

        row-gap: 35px;
    }


    .io-process-arrow {
        display: none;
    }


    .io-process-item {
        flex: 0 0 calc(33.333% - 20px);
    }


    .io-promise-grid {
        grid-template-columns:
            repeat(3, 1fr);

        row-gap: 10px;
    }


    .io-promise-item:nth-child(3)::after {
        display: none;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .io-process-section {
        padding: 30px 0 30px;
    }


    .io-process {
        row-gap: 32px;

        column-gap: 15px;
    }


    .io-process-item {
        flex: 0 0 calc(50% - 8px);

        max-width: none;
    }


    .io-process-image {
        width: 82px;
        height: 82px;

        margin-bottom: 11px;
    }


    .io-process-item h3 {
        font-size: 14px;
    }


    .io-process-item p {
        font-size: 10px;

        line-height: 1.45;
    }


    .io-process-number {
        font-size: 10px;

        margin-bottom: 6px;
    }


    /* PROMISE */

    .io-promise {
        margin-top: 38px;

        padding: 12px 10px 14px;

        border-radius: 7px;
    }


    .io-promise-heading {
        font-size: 12px;

        margin-bottom: 10px;
    }


    .io-promise-grid {
        grid-template-columns:
            repeat(2, 1fr);

        row-gap: 10px;
    }


    .io-promise-item {
        justify-content: flex-start;

        padding: 4px 8px;
    }


    .io-promise-item:nth-child(2)::after,
    .io-promise-item:nth-child(4)::after {
        display: none;
    }


    .io-promise-item:nth-child(odd)::after {
        display: block;
    }


    .io-promise-icon {
        width: 32px;
        height: 32px;

        flex-basis: 32px;

        font-size: 13px;
    }


    .io-promise-text strong {
        font-size: 9px;
    }


    .io-promise-text span {
        font-size: 8px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 420px) {

    .io-process {
        row-gap: 28px;
    }


    .io-process-item {
        flex: 0 0 100%;
    }


    .io-process-image {
        width: 90px;
        height: 90px;
    }


    .io-process-item h3 {
        font-size: 15px;
    }


    .io-process-item p {
        max-width: 220px;

        margin-left: auto;
        margin-right: auto;

        font-size: 11px;
    }


    /* PROMISE */

    .io-promise {
        margin-top: 35px;
    }


    .io-promise-grid {
        grid-template-columns: 1fr;
    }


    .io-promise-item {
        justify-content: center;

        min-height: 38px;

        border-bottom:
            1px solid rgba(255, 255, 255, 0.12);
    }


    .io-promise-item:last-child {
        border-bottom: none;
    }


    .io-promise-item::after {
        display: none !important;
    }

}


/* =========================================================
   QUOTE
   ========================================================= */

.io-quote-section {
    padding: 70px 0;

    background: #fffaf0;
}

.io-quote-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    gap: 20px;
}

.io-quote-box,
.io-shipping-box {
    padding: 38px;

    border: 1px solid var(--io-border);
    border-radius: 16px;

    background: #fffdf7;

    box-shadow: 0 7px 24px rgba(70,55,25,0.06);
}

.io-quote-box h2,
.io-shipping-box h2 {
    margin: 7px 0 10px;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 34px;
    line-height: 1.08;
}

.io-quote-box h2 span,
.io-shipping-box h2 span {
    color: var(--io-orange);
}

.io-quote-box > p,
.io-shipping-box > p {
    margin: 0 0 25px;

    color: #68705F;

    font-size: 13px;
    line-height: 1.6;
}

.io-quote-form {
    display: flex;
    flex-direction: column;

    gap: 14px;
}

.io-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.io-form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.io-form-group label {
    color: #3F4934;

    font-size: 11px;
    font-weight: 700;
}

.io-form-group input,
.io-form-group select {
    width: 100%;
    height: 42px;

    padding: 0 12px;

    border: 1px solid #D9D8C9;
    border-radius: 8px;

    outline: none;

    background: #fff;

    color: #40463B;

    font-size: 12px;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.io-form-group input:focus,
.io-form-group select:focus {
    border-color: var(--io-green);

    box-shadow:
        0 0 0 3px rgba(49,83,13,0.08);
}

.io-submit-btn {
    width: 100%;
    min-height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    margin-top: 3px;

    border: 0;
    border-radius: 999px;

    background: var(--io-green);

    color: #fff;

    font-size: 12px;
    font-weight: 700;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.io-submit-btn:hover {
    background: var(--io-green-dark);
    transform: translateY(-1px);
}


/* =========================================================
   COUNTRIES
   ========================================================= */

.io-countries {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 10px;

    margin-top: 24px;
}

.io-country {
    min-height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    border: 1px solid rgba(49,83,13,0.15);
    border-radius: 11px;

    background: #fff;

    box-shadow: 0 4px 12px rgba(40,50,20,0.04);

    font-size: 12px;
}

.io-country span {
    font-size: 21px;
}

.io-country strong {
    color: var(--io-green-dark);
}

.io-shipping-note {
    display: flex;
    gap: 15px;

    margin-top: 25px;
    padding: 20px;

    border-radius: 13px;

    background: var(--io-green-soft);
}

.io-note-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #fff;

    font-size: 19px;
}

.io-shipping-note h3 {
    margin: 0 0 5px;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 16px;
}

.io-shipping-note p {
    margin: 0 0 5px;

    color: #69715E;

    font-size: 11px;
}

.io-shipping-note a {
    color: var(--io-orange);

    font-size: 11px;
    font-weight: 700;
}


/* =========================================================
   PUJA
   ========================================================= */

.io-puja-section {
    padding: 65px 0;

    background: #f7ead0;
}

.io-puja-card {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;

    overflow: hidden;

    border: 1px solid #e6d2aa;
    border-radius: 17px;

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(255,255,255,0.8),
            transparent 30%
        ),
        #fff9ed;
}

.io-puja-content {
    padding: 40px;
}

.io-puja-content h2 {
    margin: 5px 0 8px;

    color: #B05222;

    font-family: var(--font-heading);
    font-size: 42px;
}

.io-puja-content h3 {
    max-width: 500px;

    margin: 0 0 10px;

    color: #67421F;

    font-family: var(--font-heading);
    font-size: 20px;
}

.io-puja-content > p {
    margin: 0 0 18px;

    color: #75634D;

    font-size: 13px;
}

.io-puja-list {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 9px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.io-puja-list li {
    display: flex;
    align-items: center;
    gap: 8px;

    color: #4E513E;

    font-size: 12px;
}

.io-puja-list i {
    color: var(--io-green);
}

.io-pandit-box {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;

    gap: 14px;

    margin-top: 25px;
    padding: 16px;

    border-radius: 13px;

    background: var(--io-green);

    color: #fff;
}

.io-pandit-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    font-size: 24px;
}

.io-pandit-box strong {
    display: block;

    margin-bottom: 3px;

    font-size: 12px;
}

.io-pandit-box p {
    margin: 0;

    opacity: 0.82;

    font-size: 10px;
    line-height: 1.5;
}

.io-pandit-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    padding: 9px 14px;

    border-radius: 999px;

    background: #fff;

    color: var(--io-green);

    font-size: 10px;
    font-weight: 700;

    white-space: nowrap;
}

.io-puja-visual {
    position: relative;

    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.7),
            transparent 60%
        ),
        #f3dfb4;
}

.io-puja-box {
    width: 245px;
    height: 260px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 3px solid #c89128;

    background:
        linear-gradient(
            135deg,
            #b8750f,
            #f0be49,
            #c88517
        );

    box-shadow: 0 25px 35px rgba(80,50,10,0.20);

    color: #fff4c8;

    font-size: 100px;

    transform: rotate(-3deg);
}

.io-puja-badge {
    position: absolute;

    right: 12%;
    bottom: 16%;

    padding: 12px 17px;

    border-radius: 10px;

    background: #fffaf0;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 13px;

    box-shadow: 0 8px 20px rgba(70,50,20,0.12);
}


/* =========================================================
   TRUST
   ========================================================= */

.io-trust-section {
    padding: 35px 0;

    background: #f4f4e8;
}

.io-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    border: 1px solid rgba(49,83,13,0.13);
    border-radius: 14px;

    background: rgba(255,255,255,0.6);
}

.io-trust-item {
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;

    padding: 22px 15px;

    text-align: center;
}

.io-trust-item:not(:last-child)::after {
    content: "";

    position: absolute;

    right: 0;
    top: 15px;
    bottom: 15px;

    width: 1px;

    background: rgba(49,83,13,0.15);
}

.io-trust-item > div {
    width: 44px;
    height: 44px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 7px;

    border: 1px solid #D2A54B;
    border-radius: 50%;

    font-size: 18px;
}

.io-trust-item strong {
    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 13px;
}

.io-trust-item span {
    color: #707662;

    font-size: 10px;
}


/* =========================================================
   TESTIMONIAL
   ========================================================= */

.io-testimonial-section {
    padding: 60px 0;

    background: #fffaf0;
}

.io-testimonial {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.io-quote-mark {
    color: #D5A23A;

    font-family: Georgia, serif;
    font-size: 75px;
    line-height: 0.5;
}

.io-testimonial p {
    margin: 25px 0 12px;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: clamp(21px, 3vw, 30px);
    font-style: italic;
    line-height: 1.3;
}

.io-testimonial strong {
    color: #6E6E59;

    font-size: 12px;
}

.io-stars {
    margin-top: 10px;

    color: #D08A22;

    letter-spacing: 3px;
}


/* =========================================================
   FAQ
   ========================================================= */

.io-faq-section {
    padding: 70px 0;

    background:
        linear-gradient(
            180deg,
            #f5f1df,
            #fffaf0
        );
}

.io-faq-container {
    max-width: 850px;

    margin: 0 auto;
}

.io-faq-container details {
    border-bottom: 1px solid rgba(49,83,13,0.16);

    background: rgba(255,255,255,0.45);
}

.io-faq-container summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 18px 20px;

    color: var(--io-green-dark);

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    list-style: none;
}

.io-faq-container summary::-webkit-details-marker {
    display: none;
}

.io-faq-container summary span {
    width: 24px;
    height: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--io-green-soft);

    color: var(--io-green);

    font-size: 15px;

    transition: transform 0.2s ease;
}

.io-faq-container details[open] summary span {
    transform: rotate(45deg);
}

.io-faq-container details p {
    margin: 0;

    padding: 0 50px 20px 20px;

    color: #69705F;

    font-size: 12px;
    line-height: 1.65;
}


/* =========================================================
   FINAL CTA
   ========================================================= */

.io-final-cta {
    position: relative;

    overflow: hidden;

    padding: 70px 0;

    text-align: center;

    background:
        linear-gradient(
            90deg,
            #1F4C17,
            #31530D,
            #416A17
        );

    color: #fff;
}

.io-final-cta::before,
.io-final-cta::after {
    content: "🌿";

    position: absolute;

    opacity: 0.18;

    font-size: 130px;
}

.io-final-cta::before {
    left: -20px;
    bottom: -30px;
}

.io-final-cta::after {
    right: -20px;
    top: -35px;
}

.io-final-cta span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;

    opacity: 0.78;
}

.io-final-cta h2 {
    margin: 7px 0;

    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
}

.io-final-cta p {
    margin: 0 auto;

    max-width: 600px;

    opacity: 0.82;

    font-size: 13px;
}

.io-final-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 25px;
}

.io-btn-light {
    background: #fff;
    color: var(--io-green-dark);
}

.io-btn-light:hover {
    background: #fff;
    color: var(--io-green-dark);
}

.io-btn-gold {
    background: #E6B940;
    color: #3F320E;
}

.io-btn-gold:hover {
    background: #F0CC62;
    color: #3F320E;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .io-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .io-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .io-hero-product {
        min-height: 430px;
    }

    /* .io-shipping-note {
        right: 8%;
    } */
/* 
    #io-shipping-note1 {
        top: 566px;
        width: 206px;
    } */

    .io-why-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .io-why-card:nth-child(3)::after {
        display: none;
    }

    

    .io-quote-grid,
    .io-puja-card {
        grid-template-columns: 1fr;
    }

    .io-puja-visual {
        min-height: 350px;
    }

}


@media (max-width: 768px) {
    .io-hero {
        padding: 110px 0 0;
    }

    /* #io-shipping-note1 {
        top: 725px;
        width: 161px;
        left: 4px;
    } */
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

    .international-page .container {
        width: min(100% - 28px, 600px);
    }

    .io-hero {
        min-height: auto;
    }

    /* #io-shipping-note1 {
        top: 725px;
        width: 161px;
        left: 4px;
    } */

    .io-hero-container {
        min-height: auto;
        padding-top: 45px;
        padding-bottom: 30px;
    }

    .io-eyebrow {
        font-size: 11px;
        padding: 7px 13px;
    }

    .io-hero h1 {
        font-size: 40px;
        letter-spacing: -1px;
    }

    .io-hero-description {
        font-size: 14px;
    }

    .io-hero-buttons {
        width: 100%;
        flex-direction: column;
    }

    .io-btn {
        width: 100%;
    }

    .io-hero-features {
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 18px;
    }

    .io-hero-feature:nth-child(2)::after {
        display: none;
    }

    .io-hero-product {
        min-height: 390px;
    }

    .io-ghee-card {
        width: 205px;
        height: 285px;
    }

    .io-ghee-lid {
        width: 180px;
    }

    .io-ghee-label {
        width: 155px;
        margin-top: 42px;
    }

    .io-ghee-label strong {
        font-size: 28px;
    }

    .io-cow-decoration {
        right: 2%;
        bottom: 8%;
        font-size: 70px;
    }

    .io-shipping-note {
        /* right: 0;
        top: 25px; */
        min-width: 125px;
        padding: 11px;
    }

    .io-shipping-note span {
        font-size: 9px;
    }

    .io-nri-card {
        grid-template-columns: 1fr;
    }

    .io-nri-image {
        min-height: 150px;
    }

    .io-nri-content {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 18px;
    }

    .io-nri-content h2 {
        font-size: 25px;
    }

    .io-nri-content blockquote {
        font-size: 18px;
    }

    .io-why-grid {
        grid-template-columns: 1fr 1fr;
    }

    .io-why-card:nth-child(2)::after,
    .io-why-card:nth-child(4)::after {
        display: none;
    }

    .io-why-card:nth-child(odd)::after {
        display: block;
    }

    

    .io-quote-box,
    .io-shipping-box,
    .io-puja-content {
        padding: 25px 20px;
    }

    .io-quote-box h2,
    .io-shipping-box h2 {
        font-size: 29px;
    }

    .io-form-row {
        grid-template-columns: 1fr;
    }

    .io-countries {
        grid-template-columns: 1fr 1fr;
    }

    .io-puja-content h2 {
        font-size: 34px;
    }

    .io-puja-list {
        grid-template-columns: 1fr;
    }

    .io-pandit-box {
        grid-template-columns: auto 1fr;
    }

    .io-pandit-btn {
        grid-column: 1 / -1;
        justify-content: center;
    }

    .io-trust-grid {
        grid-template-columns: 1fr 1fr;
    }

    .io-trust-item:nth-child(2)::after {
        display: none;
    }

    .io-trust-item:nth-child(3)::after {
        display: block;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {
    /* #io-shipping-note1 {
        top: 832px;
        width: 161px;
        left: 4px;
    } */
}

@media (max-width: 420px) {

    .io-hero h1 {
        font-size: 34px;
    }

    /* #io-shipping-note1 {
        top: 832px;
        width: 139px;
        left: 4px;
    } */

    .io-hero-product {
        min-height: 350px;
    }

    .io-ghee-card {
        transform: scale(0.9) rotate(-2deg);
    }

    .io-cow-decoration {
        right: -2px;
        font-size: 55px;
    }

    .io-shipping-note {
        transform: scale(0.88);
        transform-origin: top right;
    }

    .io-why-grid {
        grid-template-columns: 1fr;
    }

    .io-why-card::after {
        display: none !important;
    }

    

    .io-countries {
        grid-template-columns: 1fr;
    }

    .io-trust-grid {
        grid-template-columns: 1fr;
    }

    .io-trust-item::after {
        display: none !important;
    }

    .io-final-buttons {
        flex-direction: column;
    }

}