:root {
    --clr_white: #ffffff;
    --clr_light: #fdf9f4;
    --clr_cream: #f5ede0;
    --clr_beige: #ede0cc;
    --clr_card: #fff8f0;
    --clr_red: #e8a020;
    --clr_red2: #e03222;
    --clr_green: #3a6b35;
    --clr_green2: #4e8c46;
    --clr_gold: #d4860a;
    --clr_amber: #f0a500;
    --clr_brown: #7a4a1e;
    --clr_dark: #1e1208;
    --clr_text: #3d2b14;
    --clr_muted: #8c7358;
    --clr_border: #e8d8c0;
    --ff_display: 'Playfair Display', serif;
    --ff_body: 'Nunito', sans-serif;
    --ff_script: 'Dancing Script', cursive;
    --radius: 8px;
    --radius_lg: 16px;
    --shadow_sm: 0 2px 12px rgba(122, 74, 30, 0.10);
    --shadow_md: 0 6px 28px rgba(122, 74, 30, 0.15);
    --shadow_lg: 0 16px 48px rgba(122, 74, 30, 0.18);
    --transition: 0.3s ease;

    --gold: #e8a020;
    --t: .28s ease;
    --border: #e8d8c0;
    --text: #3d2b14;
    --ff-script: 'Dancing Script', cursive;
}

/* MARQUEE */
.marquee_strip {
    background: var(--clr_green);
    padding: 13px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee_track {
    display: inline-flex;
    animation: marquee 28s linear infinite;
}

.marquee_item {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 28px;
    font-family: var(--ff_body);
    font-weight: 700;
    font-size: 12px;
    color: #fff;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.marquee_item i {
    color: var(--clr_amber);
    font-size: 9px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* HERO SECTION */

.home_hero_section {
    position: relative;
    overflow: hidden;
    background: #fff5ec;
    min-height: 650px;
}

.home_hero_pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px,
            rgba(192, 41, 26, .06) 1px,
            transparent 0);
    background-size: 34px 34px;
    pointer-events: none;
}

.home_hero_blob1 {
    position: absolute;
    top: -180px;
    right: -160px;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(192, 41, 26, .08),
            transparent 70%);
}

.home_hero_blob2 {
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(61, 115, 58, .08),
            transparent 70%);
}

.home_hero_right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.home_hero_main_img {
    width: 100%;
    height: 100%;
}

.home_hero_main_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Overlay */

.home_hero_right::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;

    background:
        linear-gradient(to right,
            #fff5ec 0%,
            rgba(255, 245, 236, .75) 18%,
            rgba(255, 245, 236, .35) 50%,
            transparent 55%);
}

.home_hero_inner {
    position: relative;
    z-index: 5;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    min-height: 650px;
}

.home_hero_left {
    padding: 90px 40px 90px 0;
}

.home_hero_right_space {
    width: 100%;
}

.home_hero_title {
    font-family: var(--ff_display);
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    font-weight: 900;

    color: var(--clr_dark);

    margin-bottom: 22px;

    opacity: 0;
    animation: heroFadeUp .8s .15s forwards;
}

.home_hero_title em {
    font-style: italic;
    color: var(--clr_red);
}

.home_hero_title span {
    color: var(--clr_green);
}

.home_hero_desc {
    max-width: 520px;

    font-size: 15px;
    line-height: 1.9;

    color: var(--clr_muted);

    margin-bottom: 36px;

    opacity: 0;
    animation: heroFadeUp .8s .35s forwards;
}

.home_hero_cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;

    opacity: 0;
    animation: heroFadeUp .8s .55s forwards;
}

.btn_primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 14px 30px;

    border-radius: 50px;

    background: var(--clr_red);
    color: #fff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: .35s;
}

.btn_primary:hover {
    background: var(--clr_green);
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .15);
}

.btn_primary i {
    transition: .35s;
}

.btn_primary:hover i {
    transform: translateX(5px);
}

@keyframes heroFadeUp {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}

@media (max-width:1200px) {

    .home_hero_left {
        padding-right: 30px;
    }

    .home_hero_title {
        font-size: clamp(40px, 5vw, 60px);
    }

}

@media (max-width:992px) {

    .home_hero_section {
        min-height: auto;
    }

    .home_hero_inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home_hero_right {
        position: relative;
        width: 100%;
        height: 420px;
        order: -1;
    }

    .home_hero_right::before {
        background:
            linear-gradient(to bottom,
                rgba(255, 245, 236, .35),
                rgba(255, 245, 236, .10));
    }

    .home_hero_left {
        padding: 70px 0;
    }

    .home_hero_right_space {
        display: none;
    }

    .home_hero_desc {
        max-width: 100%;
    }

}

@media (max-width:768px) {

    .home_hero_right {
        height: 340px;
    }

    .home_hero_left {
        text-align: center;
        padding: 50px 0;
    }

    .home_hero_desc {
        margin-inline: auto;
    }

    .home_hero_cta {
        justify-content: center;
    }

    .home_hero_title {
        font-size: 48px;
    }

}

@media (max-width:576px) {

    .home_hero_right {
        height: 260px;
    }

    .home_hero_title {
        font-size: 36px;
    }

    .home_hero_desc {
        font-size: 14px;
        line-height: 1.8;
    }

    .btn_primary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .home_hero_blob1 {
        width: 300px;
        height: 300px;
    }

    .home_hero_blob2 {
        width: 220px;
        height: 220px;
    }

}

@media (max-width:400px) {

    .home_hero_title {
        font-size: 32px;
    }

    .home_hero_right {
        height: 220px;
    }

}

/* STORY SECTION */

.home_story_section {
    position: relative;
    overflow: hidden;
    /*background: #f9f0e0;*/
    padding: 90px 0;
}

.home_story_section::before {
    content: "";
    position: absolute;
    top: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(232, 160, 32, .10),
            transparent 70%);
}

.home_story_section::after {
    content: "";
    position: absolute;
    right: -150px;
    bottom: -150px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle,
            rgba(192, 41, 26, .08),
            transparent 70%);
}

.home_story_content_wrap {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}

.home_story_left {
    animation: storyFadeUp .8s ease;
}

.home_story_eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    background: rgba(232, 160, 32, .12);
    border: 1px solid rgba(232, 160, 32, .25);

    color: var(--clr_gold);

    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;

    padding: 8px 18px;
    border-radius: 50px;

    margin-bottom: 24px;
}

.home_story_title {
    font-family: var(--ff_display);
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.12;

    color: var(--clr_dark);

    margin-bottom: 24px;
}

.home_story_title em {
    color: var(--clr_red);
    font-style: italic;
}

.home_story_body {
    overflow: hidden;
}

.home_story_body p {
    font-size: 15px;
    line-height: 1.9;
    color: var(--clr_muted);
    margin-bottom: 16px;
}

.home_story_body strong {
    color: var(--clr_dark);
}

.read_more_story {
    display: none;
}

/* ===========================
            STORY SECTION MOBILE
        ===========================*/

@media (max-width:700px) {

    .home_story_body.collapsed {
        max-height: 190px;
        overflow: hidden;
    }

    .read_more_story {
        width: fit-content;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--clr_red);
        border-bottom: 2px solid var(--clr_red);
        font-weight: 700;
        cursor: pointer;
    }

}

.home_story_cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 30px;

    padding: 14px 30px;

    border-radius: 50px;

    background: var(--clr_red);
    color: #fff;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;

    transition: .35s;
}

.home_story_cta:hover {

    background: var(--clr_green);

    transform: translateY(-4px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, .15);

}

.home_story_cta i {

    transition: .35s;

}

.home_story_cta:hover i {

    transform: translateX(5px);

}

.home_story_right {
    display: flex;
    justify-content: center;
}

.home_story_img_panel {

    width: 100%;

    border-radius: 28px;

    overflow: hidden;

    background: #fff;

    box-shadow:
        0 30px 60px rgba(0, 0, 0, .16);

    transition: .45s;

}

.home_story_img_panel:hover {

    transform:
        rotate(0deg) translateY(-10px);

}

.home_story_img_panel img {

    width: 100%;
    height: 520px;

    display: block;

    object-fit: cover;

}

@keyframes storyFadeUp {

    from {

        opacity: 0;
        transform: translateY(40px);

    }

    to {

        opacity: 1;
        transform: translateY(0);

    }

}

@media(max-width:1100px) {

    .home_story_content_wrap {

        gap: 40px;

    }

    .home_story_img_panel img {

        height: 460px;

    }

}

@media(max-width:992px) {

    .home_story_section {

        padding: 70px 0;

    }

    .home_story_right {

        order: -1;

    }

    .home_story_img_panel {

        max-width: 650px;

        margin: auto;

        transform: none;

    }

    .home_story_img_panel:hover {

        transform: translateY(-8px);

    }

    .home_story_img_panel img {

        height: 420px;

    }

    .home_story_left {

        text-align: center;

    }

    .home_story_body {

        max-width: 700px;
        margin: auto;

    }

}

@media(max-width:768px) {

    .home_story_section {

        padding: 60px 0;

    }

    .home_story_title {

        font-size: 40px;

    }

    .home_story_body p {

        font-size: 14px;

    }

    .home_story_img_panel img {

        height: 360px;

    }

    .home_story_cta {

        justify-content: center;

    }

}

@media(max-width:576px) {

    .home_story_section {

        padding: 50px 0;

    }

    .home_story_content_wrap {

        grid-template-columns: 1fr;
        gap: 50px;

    }

    .home_story_title {

        font-size: 32px;

    }

    .home_story_eyebrow {

        font-size: 11px;
        padding: 7px 14px;

    }

    .home_story_body p {

        line-height: 1.8;

    }

    .home_story_cta {

        width: 100%;
        justify-content: center;

        font-size: 13px;

        padding: 14px 24px;

    }

    .home_story_img_panel {

        border-radius: 20px;

    }

    .home_story_img_panel img {

        height: 280px;

    }

}

@media(max-width:400px) {

    .home_story_title {

        font-size: 28px;

    }

    .home_story_img_panel img {

        height: 220px;

    }

}

/* PRODUCT CATEGORIES — category cards only, NO product rows */
.categories_section {
    background: var(--clr_light);
}

.categories_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.category_card {
    background: var(--clr_white);
    border-radius: var(--radius_lg);
    border: 1.5px solid var(--clr_border);
    box-shadow: var(--shadow_sm);
    overflow: hidden;
    transition: all var(--transition);
}

.category_card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow_md);
    border-color: rgba(232, 160, 32, 0.3);
}

.category_card_img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.category_card_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.category_card:hover .category_card_img img {
    transform: scale(1.06);
}

.category_card_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.05) 60%);
}

.category_card_body {
    padding: 28px 30px 30px;
}

.category_icon_wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 14px;
    font-size: 24px;
    margin-bottom: 16px;
}

.category_icon_wrap.pure {
    background: linear-gradient(135deg, #fff0e0, #ffd6a0);
    color: var(--clr_red);
}

.category_icon_wrap.blended {
    background: linear-gradient(135deg, #e8f5e0, #b8e0a0);
    color: var(--clr_green);
}

.category_card h3 {
    font-family: var(--ff_display);
    font-size: 24px;
    color: var(--clr_dark);
    font-weight: 700;
    margin-bottom: 10px;
}

.category_card p {
    font-size: 14px;
    color: var(--clr_muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.category_products_list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.category_product_item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--clr_text);
    font-weight: 600;
}

.category_product_item i {
    color: var(--clr_red);
    font-size: 10px;
    flex-shrink: 0;
}

.category_card_link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: gap var(--transition);
}

.category_card_link.pure {
    color: var(--clr_red);
}

.category_card_link.blended {
    color: var(--clr_green);
}

.category_card_link:hover {
    gap: 14px;
}

/* QUALITY PROCESS */
.quality_section {
    background: var(--clr_white);
}

.process_track {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
    margin-top: 20px;
}

.process_track::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(10% + 20px);
    right: calc(10% + 20px);
    height: 3px;
    background: linear-gradient(90deg, var(--clr_green), var(--clr_amber), var(--clr_red));
    border-radius: 2px;
}

.process_step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

.process_circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--clr_green), var(--clr_green2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    box-shadow: 0 4px 16px rgba(58, 107, 53, 0.3);
    border: 3px solid #fff;
    color: #fff;
}

.process_circle.amber {
    background: linear-gradient(135deg, var(--clr_amber), var(--clr_gold));
}

.process_circle.red {
    background: linear-gradient(135deg, var(--clr_red), var(--clr_red2));
}

.process_step h4 {
    font-family: var(--ff_display);
    font-size: 14px;
    color: var(--clr_dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.process_step p {
    font-size: 12px;
    color: var(--clr_muted);
    line-height: 1.6;
}

/* COMPARISON */
.comparison_section {
    background: var(--clr_light);
}

.comparison_table {
    width: 100%;
    border-collapse: collapse;
    border-radius: var(--radius_lg);
    overflow: hidden;
    box-shadow: var(--shadow_md);
}

.comparison_table thead tr {
    background: var(--clr_dark);
}

.comparison_table thead th {
    padding: 18px 24px;
    font-family: var(--ff_display);
    font-size: 16px;
    color: #fff;
    text-align: center;
    font-weight: 700;
}

.comparison_table thead th:first-child {
    text-align: left;
}

.comparison_table thead th.devnoor_col {
    background: var(--clr_green);
}

.comparison_table tbody tr {
    border-bottom: 1px solid var(--clr_border);
}

.comparison_table tbody tr:last-child {
    border-bottom: none;
}

.comparison_table tbody tr:nth-child(even) {
    background: var(--clr_cream);
}

.comparison_table tbody tr:nth-child(odd) {
    background: var(--clr_white);
}

.comparison_table tbody td {
    padding: 14px 24px;
    font-size: 13px;
    color: var(--clr_text);
    text-align: center;
    vertical-align: middle;
}

.comparison_table tbody td:first-child {
    text-align: left;
    font-weight: 700;
    color: var(--clr_dark);
}

.comparison_table tbody td.devnoor_val {
    color: var(--clr_green);
    font-weight: 700;
}

.tick {
    color: var(--clr_green);
    font-size: 16px;
}

.cross {
    color: var(--clr_red2);
    font-size: 16px;
}

/* PROMO BANNER */
.promo_banner_section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a4d15 0%, #2d7a26 60%, #3a8a31 100%);
    padding: 70px 0;
}

.promo_banner_pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.06) 1px, transparent 0);
    background-size: 28px 28px;
}

.promo_banner_inner {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media screen and (max-width: 500px) {
    .promo_banner_inner {
        grid-template-columns: 1fr;
    }
}

.promo_tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.promo_banner_inner h2 {
    font-family: var(--ff_display);
    font-size: clamp(30px, 4.5vw, 50px);
    color: #fff;
    line-height: 1.1;
    margin-bottom: 14px;
}

.promo_banner_inner h2 em {
    font-style: italic;
    color: var(--clr_amber);
}

.promo_banner_inner p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 28px;
    line-height: 1.8;
    font-size: 14px;
}

.promo_btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.promo_banner_img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.promo_banner_img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
}

@media(max-width:1024px) {
    .categories_grid {
        grid-template-columns: 1fr;
    }

    .footer_grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:768px) {
    .nav_links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .process_track {
        flex-direction: column;
        align-items: center;
        gap: 24px;
    }

    .process_track::before {
        display: none;
    }

    .footer_grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {

    .comparison_section {
        overflow: hidden;
    }

    .comparison_table {
        min-width: 620px;
    }

    .table_wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: 20px;
    }

    .table_wrapper::-webkit-scrollbar {
        height: 5px;
    }

    .table_wrapper::-webkit-scrollbar-thumb {
        background: #d4a04b;
    }

    .comparison_table th,
    .comparison_table td {
        padding: 16px 12px;
        font-size: 15px;
        white-space: normal;
    }

    .comparison_table td:first-child {
        min-width: 130px;
    }

}

/* ======================================================
        2K / 4K / ULTRAWIDE DESKTOPS
        ====================================================== */

@media screen and (min-width:1721px) {

    /* Container */

    .container {
        max-width: 75vw;
        padding: 0 1.25vw;
    }

    .section_padding {
        padding: 4vw 0;
    }

    /* ================= HEADER ================= */

    .nav {
        max-width: 75vw;
        padding: .7vw 1.25vw;
    }

    .nav_logo img {
        height: 2.9vw;
    }

    .nav_links {
        gap: 1.25vw;
    }

    .nav_links a {
        font-size: .68vw;
        padding-bottom: .2vw;
    }

    .nav_btn {
        width: 1.9vw;
        height: 1.9vw;
        font-size: .72vw;
    }

    /* ================= BUTTONS ================= */

    .btn_primary,
    .btn_white {
        padding: .7vw 1.6vw;
        font-size: .68vw;
        gap: .45vw;
        border-radius: 3vw;
    }

    .btn_outline,
    .btn_outline_white {
        padding: .65vw 1.5vw;
        font-size: .68vw;
        gap: .45vw;
        border-radius: 3vw;
    }

    /* ================= MARQUEE ================= */

    .marquee_strip {
        padding: .7vw 0;
    }

    .marquee_item {
        font-size: .62vw;
        padding: 0 1.5vw;
        gap: .7vw;
    }

    /* ================= SECTION TITLE ================= */

    .section_title {
        margin-bottom: .5vw;
    }

    .section_title h2 {
        font-size: 2.3vw;
    }

    .section_subtitle {
        font-size: .75vw;
        margin-bottom: 2.8vw;
    }

        /* ======================================================
       HERO SECTION
    ====================================================== */

    .home_hero_section {
        min-height: 38vw;
    }

    .home_hero_blob1 {
        top: -10.5vw;
        right: -9.5vw;
        width: 30vw;
        height: 30vw;
    }

    .home_hero_blob2 {
        bottom: -7vw;
        left: -7vw;
        width: 22vw;
        height: 22vw;
    }

    .home_hero_pattern {
        background-size: 2vw 2vw;
    }

    .home_hero_inner {
        min-height: 38vw;
    }

    .home_hero_left {
        padding: 5vw 2.2vw 5vw 0;
    }

    .home_hero_title {
        font-size: 3.8vw;
        margin-bottom: 1.2vw;
    }

    .home_hero_desc {
        max-width: 30vw;
        font-size: .82vw;
        line-height: 1.9;
        margin-bottom: 2vw;
    }

    .home_hero_cta {
        gap: .9vw;
    }

    .home_hero_right {
        width: 50%;
    }

    .home_hero_main_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ======================================================
       STORY SECTION
    ====================================================== */

    .home_story_section {
        padding: 5vw 0;
    }

    .home_story_section::before {
        top: -7vw;
        left: -7vw;
        width: 18vw;
        height: 18vw;
    }

    .home_story_section::after {
        right: -9vw;
        bottom: -9vw;
        width: 22vw;
        height: 22vw;
    }

    .home_story_content_wrap {
        gap: 2.8vw;
    }

    .home_story_eyebrow {
        gap: .55vw;
        font-size: .62vw;
        padding: .45vw 1vw;
        border-radius: 3vw;
        margin-bottom: 1.4vw;
    }

    .home_story_title {
        font-size: 2.9vw;
        margin-bottom: 1.4vw;
    }

    .home_story_body p {
        font-size: .78vw;
        line-height: 1.9;
        margin-bottom: .9vw;
    }

    .home_story_cta {
        margin-top: 1.7vw;
        padding: .8vw 1.7vw;
        gap: .55vw;
        font-size: .7vw;
        border-radius: 3vw;
    }

    .home_story_img_panel {
        border-radius: 1.6vw;
        box-shadow: 0 1.6vw 3.2vw rgba(0, 0, 0, .16);
    }

    .home_story_img_panel img {
        height: 30vw;
    }
    
    /* ================= CATEGORIES ================= */

    .categories_grid {
        gap: 2vw;
    }

    .category_card {
        border-radius: 1vw;
    }

    .category_card_img {
        height: 16vw;
    }

    .category_card_body {
        padding: 1.6vw;
    }

    .category_icon_wrap {
        width: 3vw;
        height: 3vw;
        font-size: 1.3vw;
        margin-bottom: .9vw;
    }

    .category_card h3 {
        font-size: 1.45vw;
    }

    .category_card p {
        font-size: .72vw;
        margin-bottom: 1vw;
    }

    .category_products_list {
        gap: .45vw;
        margin-bottom: 1.3vw;
    }

    .category_product_item {
        font-size: .68vw;
    }

    .category_card_link {
        font-size: .68vw;
    }

    /* ================= QUALITY ================= */

    .process_track {
        margin-top: 1vw;
    }

    .process_circle {
        width: 4vw;
        height: 4vw;
        font-size: 1.2vw;
        margin-bottom: .75vw;
    }

    .process_step h4 {
        font-size: .8vw;
    }

    .process_step p {
        font-size: .65vw;
    }

    /* ================= COMPARISON ================= */

    .comparison_table th {
        padding: 1vw 1.3vw;
        font-size: .82vw;
    }

    .comparison_table td {
        padding: .8vw 1.3vw;
        font-size: .68vw;
    }

    /* ================= PROMO ================= */

    .promo_banner_section {
        padding: 3.8vw 0;
    }

    .promo_banner_inner {
        max-width: 75vw;
        gap: 2.5vw;
        padding: 0 1.25vw;
    }

    .promo_tag {
        font-size: .58vw;
        padding: .35vw .9vw;
        margin-bottom: 1vw;
    }

    .promo_banner_inner h2 {
        font-size: 2.7vw;
    }

    .promo_banner_inner p {
        font-size: .75vw;
        margin-bottom: 1.5vw;
    }

    .promo_btns {
        gap: .7vw;
    }

    .promo_banner_img {
        border-radius: 1vw;
    }

    .promo_banner_img img {
        height: 20vw;
    }

    /* ================= FOOTER ================= */

    .footer {
        padding: 4vw 0 1.5vw;
    }

    .footer_grid {
        gap: 2vw;
        margin-bottom: 2.5vw;
    }

    .footer_logo_name {
        font-size: 1.7vw;
    }

    .footer_brand p {
        font-size: .72vw;
    }

    .footer_heading {
        font-size: .9vw;
    }

    .footer_links a {
        font-size: .68vw;
    }

    .footer_contact_item p {
        font-size: .68vw;
    }

    .footer_contact_icon {
        width: 2vw;
        height: 2vw;
        font-size: .72vw;
    }

    .footer_social {
        gap: .45vw;
    }

    .footer_social a {
        width: 2vw;
        height: 2vw;
        font-size: .72vw;
    }

    .footer_bottom {
        padding-top: 1.3vw;
    }

    .footer_bottom p {
        font-size: .62vw;
    }

    .footer_bottom_links {
        gap: 1vw;
    }

    .footer_bottom_links a {
        font-size: .58vw;
    }

    /* ================= SCROLL BUTTON ================= */

    .scroll_top_btn {
        width: 2.4vw;
        height: 2.4vw;
        right: 1.5vw;
        bottom: 1.5vw;
        font-size: .85vw;
    }

}