/*
Theme Name: AL ASL
Theme URI: https://example.com/
Author: AL ASL
Description: Custom WordPress theme converted from the AL ASL HTML/CSS/JS project.
Version: 1.0.0
Text Domain: al-asl
*/

/* =====================================================
   VARIABLES
===================================================== */

:root {

    --green: #005738;
    --dark-green: #00472f;

    --hero-bg: #faf8f1;

    --white: #ffffff;

    --text: #151515;
    --muted: #535c57;

    --border: #dce3df;

}


/* =====================================================
   RESET
===================================================== */

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


html {
    scroll-behavior: smooth;
}


body {

    margin: 0;

    font-family:
        "Segoe UI",
        Tahoma,
        Arial,
        sans-serif;

    color: var(--text);

    background:
        var(--hero-bg);

}


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


button,
input {
    font-family: inherit;
}


/* =====================================================
   NAVBAR AREA
===================================================== */

.site-header {

    width: 100%;

    padding:
        14px
        20px
        12px;

    background:
        var(--hero-bg);

    position: relative;

    z-index: 1000;

}


.navbar {

    width: 100%;

    min-height: 102px;

    display: flex;
    align-items: center;

    direction: rtl;

    gap: 26px;

    padding:
        16px
        34px;

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    border:
        1px solid
        rgba(
            0,
            87,
            56,
            0.08
        );

    border-radius: 20px;

    box-shadow:
        0
        10px
        35px
        rgba(
            0,
            60,
            35,
            0.045
        );

}


/* =====================================================
   SEARCH
===================================================== */

.search-box {

    width: 330px;
    height: 56px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    background: #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 15px;

    overflow: hidden;

    cursor: text;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.search-box:hover {
    border-color: #bdc8c2;
}


.search-box:focus-within {

    border-color:
        var(--green);

    box-shadow:
        0
        0
        0
        4px
        rgba(
            0,
            87,
            56,
            0.05
        );

}


.search-box input {

    flex: 1;

    width: 100%;
    height: 100%;

    padding:
        0
        18px;

    border: none;
    outline: none;

    background: transparent;

    color:
        var(--text);

    text-align: right;

    font-size: 15px;

}


.search-box input::placeholder {
    color: #aeb4b0;
}


.search-btn {

    width: 60px;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    border: none;

    background: transparent;

    color: #18241e;

    cursor: pointer;

    transition:
        color 0.2s ease,
        background 0.2s ease;

}


.search-btn:hover {

    color:
        var(--green);

    background:
        #f2f7f4;

}


.search-btn svg {

    width: 25px;
    height: 25px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 2;

    stroke-linecap: round;

}


/* =====================================================
   LANGUAGE
===================================================== */

.language-switcher {

    position: relative;

    flex-shrink: 0;

}


.language-btn {

    min-width: 155px;
    height: 56px;

    padding:
        0
        15px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 11px;

    border:
        1px solid
        var(--border);

    border-radius: 15px;

    background: #ffffff;

    color:
        var(--text);

    cursor: pointer;

    transition:
        border-color 0.2s ease,
        background 0.2s ease;

}


.language-btn:hover {

    border-color:
        var(--green);

    background:
        #f5f9f7;

}


.globe-icon {

    width: 24px;
    height: 24px;

    fill: none;

    stroke:
        var(--green);

    stroke-width: 1.8;

}


#currentLanguage {

    font-size: 16px;

    font-weight: 500;

}


.language-arrow {

    width: 22px;
    height: 22px;

    fill: none;

    stroke:
        var(--green);

    stroke-width: 2.3;

    stroke-linecap: round;
    stroke-linejoin: round;

    transition:
        transform 0.2s ease;

}


.language-switcher.open
.language-arrow {

    transform:
        rotate(180deg);

}


/* =====================================================
   LANGUAGE MENU
===================================================== */

.language-menu {

    position: absolute;

    top:
        calc(
            100% + 10px
        );

    right: 0;

    width: 225px;

    padding: 8px;

    background:
        #ffffff;

    border:
        1px solid
        var(--border);

    border-radius: 14px;

    box-shadow:
        0
        18px
        45px
        rgba(
            0,
            60,
            35,
            0.13
        );

    opacity: 0;
    visibility: hidden;

    transform:
        translateY(-7px);

    transition:
        0.2s ease;

    z-index: 9999;

}


.language-switcher.open
.language-menu {

    opacity: 1;
    visibility: visible;

    transform:
        translateY(0);

}


.language-option {

    width: 100%;

    min-height: 50px;

    padding:
        8px
        10px;

    display: grid;

    grid-template-columns:
        40px
        1fr
        24px;

    align-items: center;

    gap: 10px;

    border: none;

    border-radius: 10px;

    background: transparent;

    color: #171717;

    font-size: 16px;
    font-weight: 500;

    cursor: pointer;

}


.language-option:hover {

    background:
        #f3f7f5;

}


.language-option.active {

    background:
        #edf5f0;

    color:
        var(--green);

}


.language-code {

    width: 36px;
    height: 29px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 7px;

    background:
        #e9f1ec;

    color:
        var(--green);

    font-size: 11px;
    font-weight: 700;

}


.language-name {
    text-align: right;
}


.language-check {

    opacity: 0;

    color:
        var(--green);

}


.language-option.active
.language-check {

    opacity: 1;

}


/* =====================================================
   NAVIGATION
===================================================== */

.navigation {

    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;

}


.nav-list {

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    gap:
        clamp(
            30px,
            4vw,
            68px
        );

    list-style: none;

}


.nav-link {

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;

    padding:
        5px
        14px;

    border:
        1.5px solid
        transparent;

    border-radius:
        999px;

    color:
        #101010;

    font-size: 16px;
    font-weight: 500;

    white-space: nowrap;

    transition:
        color 0.2s ease,
        border-color 0.2s ease,
        background 0.2s ease;

}


.nav-link:hover {

    color:
        var(--green);

    background:
        rgba(
            0,
            87,
            56,
            0.03
        );

}


.nav-link.active {

    color:
        var(--green);

    border-color:
        var(--green);

    background:
        rgba(
            0,
            87,
            56,
            0.018
        );

}


/* =====================================================
   LOGO
===================================================== */

.site-logo {

    width: 190px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: flex-end;

}


.site-logo img {

    display: block;

    width: 100%;

    max-width: 185px;

    height: auto;

}


/* =====================================================
   MOBILE MENU
===================================================== */

.mobile-menu-btn {

    display: none;

    width: 48px;
    height: 48px;

    padding: 10px;

    border:
        1px solid
        var(--border);

    border-radius: 12px;

    background:
        #ffffff;

    cursor: pointer;

}


.mobile-menu-btn span {

    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background:
        var(--green);

}


/* =====================================================
   HERO
===================================================== */

.home-hero {

    position: relative;

    width: 100%;

    min-height: 600px;

    overflow: hidden;

    background:
        var(--hero-bg);

}


/* =====================================================
   HERO IMAGE
===================================================== */

.hero-visual {

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    width: 75%;

    background-image:
        url("./assets/hero.png");

    background-repeat:
        no-repeat;

    background-position:
        right center;

    background-size:
        cover;

    -webkit-mask-image:
        linear-gradient(
            to left,

            #000 0%,
            #000 45%,

            rgba(0,0,0,0.95) 55%,
            rgba(0,0,0,0.72) 66%,
            rgba(0,0,0,0.38) 77%,
            rgba(0,0,0,0.1) 87%,

            transparent 97%
        );

    mask-image:
        linear-gradient(
            to left,

            #000 0%,
            #000 45%,

            rgba(0,0,0,0.95) 55%,
            rgba(0,0,0,0.72) 66%,
            rgba(0,0,0,0.38) 77%,
            rgba(0,0,0,0.1) 87%,

            transparent 97%
        );

    z-index: 1;

}


.hero-visual::after {

    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,

            var(--hero-bg)
            0%,

            rgba(
                250,
                248,
                241,
                0.82
            ) 14%,

            rgba(
                250,
                248,
                241,
                0.2
            ) 38%,

            transparent 65%
        );

}


/* =====================================================
   HERO CONTAINER
===================================================== */

.hero-container {

    position: relative;

    z-index: 5;

    width:
        min(
            1440px,
            calc(
                100% - 80px
            )
        );

    min-height: 500px;

    margin:
        0 auto;

    display: flex;
    align-items: center;

    direction: rtl;

}


.hero-content {

    width: 48%;

    max-width: 580px;

    margin-right: auto;

    padding:
        55px
        0
        120px;

    text-align: right;

}


/* =====================================================
   EYEBROW
===================================================== */

.hero-eyebrow {

    display: inline-flex;
    align-items: center;

    gap: 7px;

    margin-bottom: 13px;

    color:
        var(--green);

    font-size: 14px;
    font-weight: 600;

}


.hero-eyebrow svg {

    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        #77ad38;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;

}


/* =====================================================
   HERO TITLE
===================================================== */

.hero-title {

    margin: 0;

    color:
        var(--green);

    font-size:
        clamp(
            48px,
            4.3vw,
            70px
        );

    font-weight: 800;

    line-height: 1.12;

    letter-spacing:
        -1px;

}


.hero-title span {

    display: block;

    margin-top: 3px;

    font-size:
        clamp(
            38px,
            3.5vw,
            58px
        );

}


/* =====================================================
   HERO DESCRIPTION
===================================================== */

.hero-description {

    max-width: 520px;

    margin-top: 22px;

    color:
        #232925;

    font-size: 18px;

    line-height: 1.9;

}


/* =====================================================
   HERO BUTTONS
===================================================== */

.hero-actions {

    display: flex;
    align-items: center;

    gap: 14px;

    margin-top: 27px;

    direction: rtl;

}


.hero-btn {

    min-height: 52px;

    padding:
        0
        23px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    border-radius: 8px;

    font-size: 15px;
    font-weight: 600;

    white-space: nowrap;

    transition:
        0.2s ease;

}


.hero-btn svg {

    width: 19px;
    height: 19px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

}


.hero-btn-primary {

    min-width: 190px;

    color:
        #ffffff;

    border:
        1px solid
        var(--green);

    background:
        linear-gradient(
            135deg,
            #006440,
            #004b31
        );

}


.hero-btn-secondary {

    min-width: 165px;

    color:
        var(--green);

    border:
        1px solid
        rgba(
            0,
            87,
            56,
            0.5
        );

    background:
        rgba(
            255,
            255,
            255,
            0.78
        );

}


.hero-btn:hover {

    transform:
        translateY(-2px);

}


/* =====================================================
   BADGE
===================================================== */

.fresh-badge {

    position: absolute;

    top: 45px;
    right: 39%;

    width: 100px;
    height: 100px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    border:
        2px solid
        rgba(
            0,
            87,
            56,
            0.7
        );

    border-radius: 50%;

    background:
        rgba(
            255,
            255,
            255,
            0.72
        );

    color:
        var(--green);

    text-align: center;

    line-height: 1.05;

}


.fresh-badge strong {

    font-size: 23px;
    font-weight: 800;

}


.fresh-badge span {

    margin-top: 2px;

    font-size: 15px;
    font-weight: 600;

}


/* =====================================================
   HERO FEATURES
===================================================== */

.hero-features-wrapper {

    position: absolute;

    left: 0;
    bottom: 0;

    z-index: 10;

    width: 61%;

    padding:
        0
        3.5%
        30px;

}


.hero-features {

    display: grid;

    grid-template-columns:
        repeat(
            4,
            minmax(
                0,
                1fr
            )
        );

    gap: 28px;

    direction: rtl;

}


.hero-feature {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 15px;

    min-width: 0;

}


.feature-icon {

    flex-shrink: 0;

    color:
        var(--green);

}


.feature-icon svg {

    width: 44px;
    height: 44px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;

}


.feature-text {

    display: flex;

    flex-direction: column;

    gap: 4px;

    line-height: 1.45;

}


.feature-text strong {

    color:
        #17251e;

    font-size: 17px;
    font-weight: 600;

    white-space: nowrap;

}


.feature-text span {

    color:
        var(--muted);

    font-size: 14px;
    font-weight: 400;

    white-space: nowrap;

}


/* =====================================================
   PRODUCTS SECTION
===================================================== */

.products-showcase {

    width: 100%;

    /*
       مهم:
       الـ100px جزء من الخلفية البيضاء
    */

    margin-top: 0;

    padding:
        100px
        0
        60px;

    background:
        #ffffff;

}


.products-showcase-container {

    width:
        min(
            1440px,
            calc(
                100% - 80px
            )
        );

    margin:
        0 auto;

}


/* =====================================================
   SECTION TITLE
===================================================== */

.section-title {

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 32px;

    text-align: center;

}


.section-title h2 {

    margin: 0;

    color:
        var(--green);

    font-size: 32px;

    font-weight: 700;

    line-height: 1.3;

}


/* =====================================================
   PRODUCT CATEGORIES GRID
===================================================== */

.products-showcase-grid {

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    grid-template-areas:
        "fresh frozen";

    gap: 26px;

    direction: ltr;

}


.fresh-card {
    grid-area: fresh;
}


.frozen-card {
    grid-area: frozen;
}


/* =====================================================
   CATEGORY CARD
===================================================== */

.product-category-card {

    position: relative;

    min-height: 330px;

    display: grid;

    grid-template-columns:
        31%
        69%;

    overflow: hidden;

    border-radius: 18px;

    direction: ltr;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;

}


.product-category-card:hover {

    transform:
        translateY(-3px);

    box-shadow:
        0
        16px
        35px
        rgba(
            0,
            70,
            42,
            0.07
        );

}


.fresh-card {

    background:
        linear-gradient(
            135deg,
            #f5f8ef,
            #fafbf7
        );

    border:
        1px solid
        #edf1e8;

}


.frozen-card {

    background:
        linear-gradient(
            135deg,
            #f1f7fc,
            #f8fbfe
        );

    border:
        1px solid
        #e7eef5;

}


/* =====================================================
   BIG PRODUCT IMAGE
===================================================== */

.category-main-image {

    position: relative;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: flex-end;
    justify-content: center;

    padding:
        22px
        5px
        0;

    background:
        transparent;

    overflow: hidden;

}


.category-main-image img {

    display: block;

    width: 100%;

    max-width: 250px;

    height: auto;

    max-height: 285px;

    object-fit: contain;

    object-position:
        center bottom;

    background:
        transparent;

}


/* =====================================================
   CATEGORY CONTENT
===================================================== */

.category-card-content {

    min-width: 0;

    padding:
        26px
        28px
        20px;

    display: flex;
    flex-direction: column;

    direction: rtl;

}


.category-heading {

    width: 100%;

}


.category-heading h3 {

    margin: 0;

    font-size: 27px;

    font-weight: 700;

    line-height: 1.3;

}


.fresh-card
.category-heading h3 {

    color:
        var(--green);

}


.frozen-card
.category-heading h3 {

    color:
        #07538e;

}


.category-heading p {

    margin:
        7px
        0
        0;

    color:
        #4a544f;

    font-size: 14px;

    line-height: 1.7;

}


/* =====================================================
   MINI PRODUCTS
===================================================== */

.mini-products {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            5,
            minmax(
                0,
                1fr
            )
        );

    align-items: start;

    gap: 12px;

    margin-top: 22px;

}


.mini-product {

    min-width: 0;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    gap: 9px;

    color:
        #222222;

    text-align: center;

}


/* =====================================================
   MINI IMAGE FRAME
===================================================== */

.mini-product-image {

    width: 62px;
    height: 62px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 5px;

    overflow: hidden;

    background:
        #ffffff;

    border:
        1px solid
        rgba(
            0,
            0,
            0,
            0.08
        );

    border-radius:
        50%;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;

}


.mini-product:hover
.mini-product-image {

    transform:
        translateY(-2px);

    border-color:
        rgba(
            0,
            87,
            56,
            0.25
        );

    box-shadow:
        0
        6px
        14px
        rgba(
            0,
            70,
            42,
            0.08
        );

}


/*
   الصورة متسنترة بالكامل داخل الدائرة
*/

.mini-product-image img {

    display: block;

    width: 100%;
    height: 100%;

    max-width: 50px;
    max-height: 50px;

    margin:
        auto;

    object-fit:
        contain;

    object-position:
        center;

}


/* =====================================================
   PRODUCT NAME
===================================================== */

.mini-product span {

    width: 100%;

    color:
        #202723;

    font-size: 14px;

    font-weight: 600;

    line-height: 1.45;

    text-align: center;

    white-space: normal;

}


/* =====================================================
   CATEGORY BUTTON
===================================================== */

.category-view-btn {

    width: 100%;

    min-height: 44px;

    margin-top:
        auto;

    padding:
        0
        16px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 7px;

    color:
        #ffffff;

    font-size: 14px;

    font-weight: 600;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;

}


.category-view-btn svg {

    width: 17px;
    height: 17px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 2;

    stroke-linecap: round;
    stroke-linejoin: round;

}


.fresh-view-btn {

    background:
        linear-gradient(
            135deg,
            #006542,
            #004d32
        );

}


.frozen-view-btn {

    background:
        linear-gradient(
            135deg,
            #0864a6,
            #04487d
        );

}


.category-view-btn:hover {

    transform:
        translateY(-1px);

    box-shadow:
        0
        8px
        18px
        rgba(
            0,
            70,
            42,
            0.12
        );

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1250px) {

    .navbar {

        gap: 17px;

        padding-inline:
            22px;

    }


    .search-box {
        width: 270px;
    }


    .language-btn {
        min-width: 140px;
    }


    .nav-list {
        gap: 22px;
    }


    .site-logo {
        width: 160px;
    }


    .hero-container {

        width:
            calc(
                100% - 50px
            );

    }


    .hero-features-wrapper {
        width: 64%;
    }


    .hero-features {
        gap: 15px;
    }


    .feature-icon svg {

        width: 38px;
        height: 38px;

    }


    .feature-text strong {
        font-size: 15px;
    }


    .feature-text span {
        font-size: 12px;
    }


    .products-showcase-container {

        width:
            calc(
                100% - 50px
            );

    }


    .category-card-content {

        padding:
            22px
            20px
            18px;

    }


    .mini-product-image {

        width: 54px;
        height: 54px;

    }


    .mini-product-image img {

        max-width: 43px;
        max-height: 43px;

    }


    .mini-product span {

        font-size: 12px;

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 980px) {

    .navbar {
        flex-wrap: wrap;
    }


    .search-box {

        flex: 1;

        width: auto;

    }


    .mobile-menu-btn {
        display: block;
    }


    .site-logo {

        width: 145px;

        margin-right: auto;

    }


    .navigation {

        display: none;

        width: 100%;

        flex-basis: 100%;

    }


    .navigation.open {
        display: block;
    }


    .nav-list {

        flex-direction: column;

        align-items: stretch;

        gap: 5px;

        padding-top: 12px;

        border-top:
            1px solid
            var(--border);

    }


    .nav-link {

        width: 100%;

        justify-content:
            flex-start;

        border-radius:
            10px;

    }


    .hero-visual {

        width: 100%;

        opacity:
            0.3;

    }


    .hero-container {

        width:
            calc(
                100% - 40px
            );

    }


    .hero-content {

        width: 100%;

        max-width: 620px;

        margin:
            auto;

        padding:
            70px
            0
            190px;

        text-align:
            center;

    }


    .hero-eyebrow {

        justify-content:
            center;

    }


    .hero-description {

        margin-inline:
            auto;

    }


    .hero-actions {

        justify-content:
            center;

    }


    .fresh-badge {
        display: none;
    }


    .hero-features-wrapper {

        width: 100%;

        padding:
            0
            25px
            25px;

    }


    .products-showcase {

        padding-top:
            80px;

    }


    .products-showcase-grid {

        grid-template-columns:
            1fr;

        grid-template-areas:
            "fresh"
            "frozen";

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 650px) {

    .site-header {

        padding:
            8px
            10px;

    }


    .navbar {

        min-height: auto;

        padding: 12px;

        gap: 9px;

        border-radius:
            16px;

    }


    .site-logo {
        width: 112px;
    }


    .language-btn {

        width: 48px;
        min-width: 48px;

        height: 48px;

        padding: 0;

    }


    #currentLanguage,
    .language-arrow {

        display: none;

    }


    .search-box {

        order: 5;

        width: 100%;

        flex-basis: 100%;

        height: 48px;

    }


    .navigation {
        order: 6;
    }


    .language-menu {

        right: auto;

        left: 0;

    }


    .home-hero {
        min-height: auto;
    }


    .hero-container {

        width:
            calc(
                100% - 28px
            );

    }


    .hero-content {

        padding:
            70px
            0
            270px;

    }


    .hero-title {

        font-size: 42px;

    }


    .hero-title span {

        font-size: 32px;

    }


    .hero-description {

        font-size: 15px;

        line-height: 1.8;

    }


    .hero-actions {

        width: 100%;

        flex-direction:
            column;

    }


    .hero-btn {

        width: 100%;

    }


    .hero-features-wrapper {

        width: 100%;

        padding:
            0
            18px
            22px;

    }


    .hero-features {

        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap:
            22px
            14px;

    }


    .hero-feature {

        justify-content:
            flex-start;

    }


    .products-showcase {

        padding:
            60px
            0
            40px;

    }


    .products-showcase-container {

        width:
            calc(
                100% - 28px
            );

    }


    .section-title h2 {

        font-size:
            32px;

    }


    .product-category-card {

        display: flex;

        flex-direction:
            column;

        min-height:
            auto;

    }


    .category-main-image {

        height: 210px;

        padding-top:
            10px;

    }


    .category-main-image img {

        width: auto;

        max-width: 80%;

        max-height:
            200px;

    }


    .category-card-content {

        padding:
            20px
            16px;

    }


    .category-heading h3 {

        font-size:
            23px;

    }


    .mini-product-image {

        width: 50px;
        height: 50px;

    }


    .mini-product-image img {

        max-width: 40px;
        max-height: 40px;

    }


    .mini-product span {

        font-size:
            11px;

    }


    .category-view-btn {

        margin-top:
            20px;

    }

}

/* =====================================================
   SEASON SECTION
===================================================== */

.season-section {
    width: 100%;

    padding:
        100px
        0
        70px;

    background:
        #ffffff;
}


.season-container {
    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    margin:
        0 auto;
}



/* =====================================================
   SECTION HEADER
===================================================== */

.season-section-header {
    position: relative;

    width: 100%;

    display: flex;

    align-items: flex-start;
    justify-content: center;

    margin-bottom:
        36px;
}


.season-section-heading {
    text-align: center;
}


.season-section-heading h2 {
    margin: 0;

    color:
        #181d1a;

    font-size:
        32px;

    font-weight:
        700;

    line-height:
        1.35;
}


.season-section-heading p {
    margin-top:
        8px;

    color:
        #68706c;

    font-size:
        14px;

    line-height:
        1.7;
}



/* =====================================================
   ALL SEASONS BUTTON
===================================================== */

.season-all-btn {
    position: absolute;

    top: 0;
    right: 0;

    min-height:
        42px;

    padding:
        0
        20px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(
            0,
            87,
            56,
            0.23
        );

    border-radius:
        9px;

    background:
        #ffffff;

    color:
        var(--green);

    font-size:
        14px;

    font-weight:
        600;

    transition:
        0.2s ease;
}


.season-all-btn:hover {
    border-color:
        var(--green);

    background:
        #f3f8f5;
}



/* =====================================================
   SLIDER
===================================================== */

.season-slider {
    position: relative;

    width: 100%;
}



/* =====================================================
   TRACK
===================================================== */

.season-track {
    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(
                0,
                1fr
            )
        );

    gap:
        22px;

    direction:
        rtl;

    overflow-x:
        auto;

    scroll-behavior:
        smooth;

    scrollbar-width:
        none;
}


.season-track::-webkit-scrollbar {
    display:
        none;
}



/* =====================================================
   CARD
===================================================== */

.season-card {
    position: relative;

    min-width: 0;

    height:
        310px;

    display: grid;

    grid-template-columns:
        38%
        62%;

    overflow:
        hidden;

    background:
        #ffffff;

    border:
        1px solid
        #e2e7e4;

    border-radius:
        14px;

    direction:
        ltr;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}


.season-card:hover {
    transform:
        translateY(-3px);

    box-shadow:
        0
        14px
        34px
        rgba(
            0,
            70,
            42,
            0.07
        );
}



/* =====================================================
   PRODUCT IMAGE
===================================================== */

.season-product-image {
    position: relative;

    width: 100%;
    height: 100%;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        35px
        0
        20px;

    background:
        transparent;

    overflow:
        visible;
}


.season-product-image img {
    display:
        block;

    width:
        125%;

    height:
        100%;

    max-width:
        245px;

    max-height:
        245px;

    margin:
        auto;

    object-fit:
        contain;

    object-position:
        center;

    background:
        transparent;
}



/* =====================================================
   CARD CONTENT
===================================================== */

.season-card-content {
    min-width:
        0;

    padding:
        24px
        22px
        18px;

    display:
        flex;

    flex-direction:
        column;

    direction:
        rtl;

    text-align:
        right;
}



/* =====================================================
   TITLE
===================================================== */

.season-card-content h3 {
    margin:
        0;

    color:
        #151a17;

    font-size:
        22px;

    font-weight:
        700;

    line-height:
        1.3;
}



/* =====================================================
   AVAILABILITY
===================================================== */

.season-availability-title {
    display:
        block;

    margin-top:
        18px;

    color:
        var(--green);

    font-size:
        13px;

    font-weight:
        600;
}



/* =====================================================
   MONTHS
===================================================== */

.season-months {
    width:
        100%;

    margin-top:
        10px;

    display:
        grid;

    grid-template-columns:
        repeat(
            8,
            1fr
        );

    gap:
        6px;

    direction:
        rtl;
}


.season-month {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        6px;
}


.season-month span {
    color:
        #6f7773;

    font-size:
        8px;

    font-weight:
        500;

    white-space:
        nowrap;
}


.season-month i {
    display:
        block;

    width:
        16px;

    height:
        16px;

    border:
        1px solid
        #d6dcd8;

    border-radius:
        50%;

    background:
        #edf0ee;
}


.season-month.available i {
    border-color:
        #005738;

    background:
        linear-gradient(
            145deg,
            #16855a,
            #005738
        );

    box-shadow:
        inset
        0
        0
        0
        2px
        rgba(
            255,
            255,
            255,
            0.14
        );
}



/* =====================================================
   SUGAR
===================================================== */

.season-sugar {
    margin-top:
        23px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        flex-start;
}


.season-sugar span {
    color:
        #515a55;

    font-size:
        12px;

    font-weight:
        500;
}


.season-sugar strong {
    margin-top:
        5px;

    color:
        var(--green);

    font-size:
        22px;

    font-weight:
        700;

    line-height:
        1.2;

    direction:
        ltr;

    unicode-bidi:
        isolate;
}



/* =====================================================
   DETAILS BUTTON
===================================================== */

.season-details-btn {
    align-self:
        flex-start;

    min-height:
        38px;

    margin-top:
        auto;

    padding:
        0
        18px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(
            0,
            87,
            56,
            0.18
        );

    border-radius:
        8px;

    background:
        #f2f6f3;

    color:
        var(--green);

    font-size:
        13px;

    font-weight:
        600;

    transition:
        0.2s ease;
}


.season-details-btn:hover {
    background:
        var(--green);

    color:
        #ffffff;
}



/* =====================================================
   ARROWS
===================================================== */

.season-arrow {
    position:
        absolute;

    top:
        50%;

    z-index:
        20;

    width:
        48px;

    height:
        48px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        #dfe5e1;

    border-radius:
        50%;

    background:
        #ffffff;

    color:
        var(--green);

    cursor:
        pointer;

    box-shadow:
        0
        5px
        16px
        rgba(
            0,
            60,
            35,
            0.06
        );

    transform:
        translateY(-50%);

    transition:
        0.2s ease;
}


.season-arrow:hover {
    border-color:
        var(--green);

    background:
        #f4f8f5;
}


.season-arrow svg {
    width:
        21px;

    height:
        21px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        2.2;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.season-arrow-right {
    right:
        -24px;
}


.season-arrow-left {
    left:
        -24px;
}



/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1150px) {

    .season-container {
        width:
            calc(
                100% - 50px
            );
    }


    .season-track {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    360px,
                    1fr
                )
            );
    }


    .season-card {
        min-width:
            360px;
    }

}



@media (max-width: 850px) {

    .season-section {
        padding-top:
            80px;
    }


    .season-section-header {
        flex-direction:
            column;

        align-items:
            center;

        gap:
            18px;
    }


    .season-all-btn {
        position:
            static;
    }


    .season-track {
        grid-template-columns:
            repeat(
                3,
                minmax(
                    380px,
                    1fr
                )
            );
    }

}



@media (max-width: 600px) {

    .season-section {
        padding:
            60px
            0
            45px;
    }


    .season-container {
        width:
            calc(
                100% - 28px
            );
    }


    .season-section-heading h2 {
        font-size:
            32px;
    }


    .season-section-heading p {
        font-size:
            13px;
    }


    .season-track {
        display:
            flex;

        gap:
            14px;
    }


    .season-card {
        min-width:
            calc(
                100vw - 50px
            );

        height:
            auto;

        min-height:
            300px;

        grid-template-columns:
            35%
            65%;
    }


    .season-product-image {
        padding:
            25px
            0;
    }


    .season-product-image img {
        max-width:
            190px;

        max-height:
            220px;
    }


    .season-card-content {
        padding:
            20px
            14px;
    }


    .season-card-content h3 {
        font-size:
            19px;
    }


    .season-months {
        gap:
            3px;
    }


    .season-month i {
        width:
            13px;

        height:
            13px;
    }


    .season-month span {
        font-size:
            7px;
    }


    .season-sugar strong {
        font-size:
            20px;
    }


    .season-arrow {
        display:
            none;
    }

}

/* =====================================================
   WHY AL ASL + STATS SECTION
===================================================== */

.why-stats-section {
    width: 100%;

    /*
       مسافة بيضاء بينه وبين السيكشن السابق
    */

    padding:
        100px
        0
        70px;

    background:
        #ffffff;
}


/* =====================================================
   MAIN CONTAINER
===================================================== */

.why-stats-container {
    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    min-height: 165px;

    margin:
        0 auto;

    padding:
        24px
        38px;

    display: grid;

    /*
       الجزء الشمال لماذا الأصل
       واليمين الإحصائيات
    */

    grid-template-columns:
        38%
        62%;

    align-items:
        center;

    overflow:
        hidden;

    border-radius:
        16px;

    background:
        linear-gradient(
            110deg,
            #00452f 0%,
            #005738 45%,
            #00482f 100%
        );

    box-shadow:
        0
        10px
        26px
        rgba(
            0,
            70,
            42,
            0.10
        );

   direction: rtl;

    position:
        relative;
}


/* subtle decoration */

.why-stats-container::before {
    content: "";

    position: absolute;

    top:
        -100px;

    right:
        18%;

    width:
        280px;

    height:
        280px;

    border-radius:
        50%;

    background:
        rgba(
            255,
            255,
            255,
            0.025
        );

    pointer-events:
        none;
}


/* =====================================================
   WHY AL ASL
===================================================== */

.why-alasl {
    height: 100%;

    padding:
        4px
        0
        4px
        34px;

    border-left:
        1px solid
        rgba(255,255,255,0.12);

    border-right: 0;

    direction: rtl;

    text-align: right;
}


/* title */

.why-alasl h2 {
    margin:
        0
        0
        18px;

    color:
        #ffffff;

    font-size:
        22px;

    font-weight:
        700;

    line-height:
        1.3;
}


/* =====================================================
   WHY POINTS GRID
===================================================== */

.why-points {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        15px
        24px;
}


/* =====================================================
   WHY POINT
===================================================== */

.why-point {
    display:
        flex;

    align-items:
        center;

    gap:
        8px;

    color:
        rgba(
            255,
            255,
            255,
            0.92
        );

    font-size:
        13px;

    font-weight:
        500;

    line-height:
        1.55;
}


/* =====================================================
   CHECK ICON
===================================================== */

.why-check {
    flex-shrink:
        0;

    width:
        23px;

    height:
        23px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #ffffff;
}


.why-check svg {
    width:
        22px;

    height:
        22px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        1.7;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


/* =====================================================
   STATS
===================================================== */

.stats-grid {
    width:
        100%;

    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    align-items:
        center;

    direction:
        ltr;
}


/* =====================================================
   STAT ITEM
===================================================== */

.stat-item {
    position:
        relative;

    min-height:
        100px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    text-align:
        center;
}


/*
   divider between statistics
*/

.stat-item:not(:last-child)::after {
    content:
        "";

    position:
        absolute;

    top:
        22%;

    right:
        0;

    width:
        1px;

    height:
        56%;

    background:
        rgba(
            255,
            255,
            255,
            0.09
        );
}


/* =====================================================
   NUMBER
===================================================== */

.stat-number {
    color:
        #ffffff;

    font-size:
        44px;

    font-weight:
        700;

    line-height:
        1;

    letter-spacing:
        -1px;

    direction:
        ltr;
}


/* =====================================================
   LABEL
===================================================== */

.stat-label {
    color:
        rgba(
            255,
            255,
            255,
            0.83
        );

    font-size:
        13px;

    font-weight:
        500;

    line-height:
        1.4;

    direction:
        rtl;
}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1150px) {

    .why-stats-container {
        width:
            calc(
                100% - 50px
            );

        grid-template-columns:
            42%
            58%;

        padding:
            22px
            26px;
    }


    .why-alasl {
        padding-right:
            20px;
    }


    .why-alasl h2 {
        font-size:
            20px;
    }


    .why-point {
        font-size:
            11px;
    }


    .stat-number {
        font-size:
            36px;
    }


    .stat-label {
        font-size:
            11px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .why-stats-section {
        padding-top:
            80px;
    }


    .why-stats-container {
        grid-template-columns:
            1fr;

        gap:
            28px;

        padding:
            28px;
    }


    .why-alasl {
        padding:
            0
            0
            26px;

        border-right:
            none;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.12
            );
    }


    .stats-grid {
        grid-template-columns:
            repeat(
                4,
                1fr
            );
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .why-stats-section {
        padding:
            60px
            0
            45px;
    }


    .why-stats-container {
        width:
            calc(
                100% - 28px
            );

        padding:
            26px
            20px;

        border-radius:
            14px;
    }


    .why-alasl {
        text-align:
            center;
    }


    .why-alasl h2 {
        font-size:
            22px;
    }


    .why-points {
        grid-template-columns:
            1fr;

        gap:
            13px;
    }


    .why-point {
        justify-content:
            flex-start;

        font-size:
            13px;

        text-align:
            right;
    }


    .stats-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        gap:
            22px
            5px;
    }


    .stat-item {
        min-height:
            90px;
    }


    .stat-item::after {
        display:
            none;
    }


    .stat-number {
        font-size:
            38px;
    }


    .stat-label {
        font-size:
            12px;
    }

}

/* =====================================================
   FEATURED PRODUCTS
===================================================== */

.featured-section {

    width: 100%;

    /*
       المسافة بين السكاشن
       من الخلفية البيضاء نفسها
    */

    padding:
        100px
        0
        70px;

    background:
        #ffffff;

}


.featured-container {

    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    margin:
        0 auto;

}


/* =====================================================
   TITLE
===================================================== */

.featured-section-title {

    width: 100%;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom:
        34px;

    text-align: center;

}


.featured-section-title h2 {

    margin: 0;

    color:
        var(--green);

    font-size:
        32px;

    font-weight:
        700;

    line-height:
        1.3;

}


/* =====================================================
   SLIDER
===================================================== */

.featured-slider {

    position: relative;

    width: 100%;

}


/* =====================================================
   TRACK
===================================================== */

.featured-track {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(
            6,
            minmax(
                0,
                1fr
            )
        );

    gap:
        18px;

    padding:
        4px;

    overflow-x:
        auto;

    scroll-behavior:
        smooth;

    scrollbar-width:
        none;

    direction:
        rtl;

}


.featured-track::-webkit-scrollbar {

    display:
        none;

}


/* =====================================================
   CARD
===================================================== */

.featured-card {

    min-width:
        0;

    min-height:
        230px;

    padding:
        14px
        12px
        15px;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    justify-content:
        space-between;

    overflow:
        hidden;

    background:
        #ffffff;

    border:
        1px solid
        #ebefec;

    border-radius:
        13px;

    box-shadow:
        0
        5px
        16px
        rgba(
            0,
            60,
            35,
            0.035
        );

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;

}


.featured-card:hover {

    transform:
        translateY(-4px);

    border-color:
        rgba(
            0,
            87,
            56,
            0.18
        );

    box-shadow:
        0
        12px
        25px
        rgba(
            0,
            70,
            42,
            0.08
        );

}


/* =====================================================
   PRODUCT IMAGE
===================================================== */

.featured-product-image {

    width: 100%;

    height:
        135px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;

    background:
        #fafbfa;

    border-radius:
        10px;

}


.featured-product-image img {

    display:
        block;

    width:
        100%;

    height:
        100%;

    max-width:
        180px;

    max-height:
        125px;

    padding:
        5px;

    margin:
        auto;

    object-fit:
        contain;

    object-position:
        center;

    background:
        transparent;

}


/* =====================================================
   CONTENT
===================================================== */

.featured-card-content {

    width:
        100%;

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        10px;

    padding-top:
        10px;

    direction:
        rtl;

    text-align:
        center;

}


/* =====================================================
   PRODUCT NAME
===================================================== */

.featured-card-content h3 {

    margin:
        0;

    min-height:
        38px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    color:
        #202622;

    font-size:
        15px;

    font-weight:
        600;

    line-height:
        1.45;

}


/* =====================================================
   BUTTON
===================================================== */

.featured-product-btn {

    min-width:
        82px;

    min-height:
        32px;

    padding:
        0
        14px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        var(--green);

    border-radius:
        6px;

    background:
        var(--green);

    color:
        #ffffff;

    font-size:
        12px;

    font-weight:
        600;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;

}


.featured-product-btn:hover {

    background:
        #ffffff;

    color:
        var(--green);

    transform:
        translateY(-1px);

}


/* =====================================================
   ARROWS
===================================================== */

.featured-arrow {

    position:
        absolute;

    top:
        50%;

    z-index:
        20;

    width:
        46px;

    height:
        46px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        #dfe5e1;

    border-radius:
        50%;

    background:
        #ffffff;

    color:
        var(--green);

    cursor:
        pointer;

    box-shadow:
        0
        5px
        16px
        rgba(
            0,
            60,
            35,
            0.06
        );

    transform:
        translateY(-50%);

    transition:
        0.2s ease;

}


.featured-arrow:hover {

    border-color:
        var(--green);

    background:
        #f3f8f5;

}


.featured-arrow svg {

    width:
        20px;

    height:
        20px;

    fill:
        none;

    stroke:
        currentColor;

    stroke-width:
        2.2;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;

}


.featured-arrow-right {

    right:
        -23px;

}


.featured-arrow-left {

    left:
        -23px;

}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1200px) {

    .featured-container {

        width:
            calc(
                100% - 50px
            );

    }


    .featured-track {

        grid-template-columns:
            repeat(
                6,
                minmax(
                    180px,
                    1fr
                )
            );

    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 900px) {

    .featured-section {

        padding-top:
            80px;

    }


    .featured-track {

        display:
            flex;

        gap:
            16px;

    }


    .featured-card {

        min-width:
            200px;

    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .featured-section {

        padding:
            60px
            0
            45px;

    }


    .featured-container {

        width:
            calc(
                100% - 28px
            );

    }


    .featured-section-title h2 {

        font-size:
            32px;

    }


    .featured-track {

        gap:
            13px;

    }


    .featured-card {

        min-width:
            175px;

        min-height:
            220px;

    }


    .featured-product-image {

        height:
            125px;

    }


    .featured-card-content h3 {

        font-size:
            14px;

    }


    .featured-arrow {

        display:
            none;

    }

}
/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    position: relative;

    width: 100%;

    overflow: hidden;

    color: #ffffff;

    background:
        radial-gradient(
            circle at 45% 25%,
            rgba(10, 108, 71, 0.55),
            transparent 42%
        ),
        linear-gradient(
            135deg,
            #003c2b 0%,
            #005238 45%,
            #003c2a 100%
        );

    border-radius:
        38px
        38px
        0
        0;
}


/* =====================================================
   DECORATIVE BACKGROUND
===================================================== */

.site-footer::before {
    content: "";

    position: absolute;

    width: 330px;
    height: 330px;

    right: -110px;
    bottom: -105px;

    border:
        2px solid
        rgba(135, 176, 72, 0.08);

    border-radius: 50%;

    box-shadow:
        0 0 0 38px
        rgba(135, 176, 72, 0.018);

    pointer-events: none;
}


.site-footer::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    left: -175px;
    bottom: -180px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(111, 153, 48, 0.08),
            transparent 70%
        );

    pointer-events: none;
}


/* =====================================================
   MAIN
===================================================== */

.footer-main {
    position: relative;

    z-index: 2;

    width: 100%;

    padding:
        75px
        0
        58px;
}


.footer-container {
    width:
        min(
            1440px,
            calc(100% - 100px)
        );

    margin:
        0 auto;

    display: grid;

    /*
       من اليمين:
       Brand
       Quick Links
       Contact
       Social
    */

    grid-template-columns:
        1.25fr
        0.9fr
        1.1fr
        1fr;

    gap: 0;

    direction: rtl;
}


/* =====================================================
   COLUMNS
===================================================== */

.footer-brand,
.footer-column {
    position: relative;

    min-width: 0;

    padding:
        0
        42px;
}


.footer-brand {
    padding-right: 0;
}


.footer-social-column {
    padding-left: 0;
}


/* separators */

.footer-column::after,
.footer-brand::after {
    content: "";

    position: absolute;

    top: 10px;
    left: 0;

    width: 1px;
    height: calc(100% - 20px);

    background:
        rgba(
            255,
            255,
            255,
            0.18
        );
}


.footer-social-column::after {
    display: none;
}


/* =====================================================
   BRAND
===================================================== */

.footer-brand {
    display: flex;

    flex-direction: column;

    align-items: flex-start;

    justify-content: flex-start;

    direction: rtl;

    text-align: right;
}


.footer-logo {
    display: block;

    width: 245px;
}


.footer-logo img {
    display: block;

    width: 100%;

    height: auto;

    /*
       لأن اللوجو الأصلي أخضر
       نخليه أبيض داخل الفوتر
    */

    filter:
        brightness(0)
        invert(1);
}


.footer-brand-description {
    max-width: 310px;

    margin-top: 32px;

    color:
        rgba(
            255,
            255,
            255,
            0.88
        );

    font-size: 17px;

    font-weight: 400;

    line-height: 2.15;
}


/* =====================================================
   TITLES
===================================================== */

.footer-title {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin:
        0
        0
        28px;

    color: #ffffff;

    font-size: 22px;

    font-weight: 700;

    line-height: 1.3;
}


/* small green leaf style decoration */

.footer-title::after {
    content: "";

    width: 13px;
    height: 8px;

    display: block;

    border-radius:
        100% 0
        100% 0;

    background:
        #8abd36;

    transform:
        rotate(-25deg);
}


/* =====================================================
   QUICK LINKS
===================================================== */

.footer-links {
    display: flex;

    flex-direction: column;
}


.footer-links a {
    min-height: 62px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 12px;

    border-bottom:
        1px dashed
        rgba(
            255,
            255,
            255,
            0.16
        );

    color:
        rgba(
            255,
            255,
            255,
            0.9
        );

    font-size: 17px;

    font-weight: 500;

    transition:
        color 0.2s ease,
        padding 0.2s ease;
}


.footer-links a:hover {
    color:
        #a6d459;

    padding-right:
        5px;
}


.footer-leaf {
    color:
        #8abd36;

    font-size: 10px;
}


/* =====================================================
   CONTACT
===================================================== */

.footer-contact-list {
    display: flex;

    flex-direction: column;
}


.footer-contact-item {
    min-height: 68px;

    display: flex;

    align-items: center;

    gap: 16px;

    border-bottom:
        1px dashed
        rgba(
            255,
            255,
            255,
            0.16
        );

    color:
        rgba(
            255,
            255,
            255,
            0.94
        );

    font-size: 17px;

    transition:
        color 0.2s ease;
}


.footer-contact-item:hover {
    color:
        #a6d459;
}


.footer-contact-icon {
    flex-shrink: 0;

    width: 31px;
    height: 31px;

    display: flex;

    align-items: center;

    justify-content: center;
}


.footer-contact-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =====================================================
   SOCIAL
===================================================== */

.footer-social-section {
    margin-bottom:
        48px;
}


.footer-social-links {
    display: flex;

    align-items: center;

    gap: 17px;
}


.footer-social-btn {
    width: 54px;
    height: 54px;

    display: flex;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.65
        );

    border-radius:
        50%;

    color: #ffffff;

    background:
        rgba(
            255,
            255,
            255,
            0.02
        );

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}


.footer-social-btn:hover {
    color:
        var(--green);

    background:
        #ffffff;

    border-color:
        #ffffff;

    transform:
        translateY(-3px);
}


.footer-social-btn svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.9;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.footer-social-btn:first-child svg {
    fill:
        currentColor;

    stroke:
        none;
}


.social-fill {
    fill:
        currentColor;

    stroke:
        none;
}


/* =====================================================
   NEWSLETTER
===================================================== */

.footer-newsletter p {
    max-width: 285px;

    margin:
        -9px
        0
        22px;

    color:
        rgba(
            255,
            255,
            255,
            0.8
        );

    font-size: 14px;

    line-height: 1.8;
}


.newsletter-form {
    width: 100%;

    max-width: 290px;

    height: 56px;

    display: flex;

    align-items: center;

    overflow: hidden;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.5
        );

    border-radius:
        12px;

    background:
        rgba(
            255,
            255,
            255,
            0.06
        );
}


.newsletter-form input {
    flex: 1;

    min-width: 0;
    height: 100%;

    padding:
        0
        17px;

    border: none;
    outline: none;

    background: transparent;

    color: #ffffff;

    font-size: 14px;

    text-align: right;
}


.newsletter-form input::placeholder {
    color:
        rgba(
            255,
            255,
            255,
            0.72
        );
}


.newsletter-form button {
    width: 61px;
    height: 100%;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: none;

    background:
        linear-gradient(
            135deg,
            #8abe35,
            #5f9c24
        );

    color: #ffffff;

    cursor: pointer;

    transition:
        filter 0.2s ease;
}


.newsletter-form button:hover {
    filter:
        brightness(1.08);
}


.newsletter-form button svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =====================================================
   BOTTOM
===================================================== */

.footer-bottom {
    position: relative;

    z-index: 2;

    width: 100%;

    border-top:
        1px solid
        rgba(
            255,
            255,
            255,
            0.22
        );
}


.footer-bottom-container {
    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    min-height: 76px;

    margin:
        0 auto;

    display: flex;

    align-items: center;

    justify-content: center;
}


.footer-bottom p {
    margin: 0;

    color:
        rgba(
            255,
            255,
            255,
            0.86
        );

    font-size: 15px;

    font-weight: 400;

    text-align: center;
}


/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1150px) {

    .footer-container {
        width:
            calc(
                100% - 50px
            );

        grid-template-columns:
            repeat(
                2,
                1fr
            );

        row-gap:
            50px;
    }


    .footer-brand,
    .footer-column {
        padding:
            0
            30px;
    }


    .footer-brand::after,
    .footer-contact-column::after {
        display: none;
    }


    .footer-links-column::after {
        display: block;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 780px) {

    .footer-main {
        padding-top:
            60px;
    }


    .footer-container {
        grid-template-columns:
            1fr;

        gap:
            42px;
    }


    .footer-brand,
    .footer-column {
        padding:
            0
            10px
            35px;

        border-bottom:
            1px solid
            rgba(
                255,
                255,
                255,
                0.12
            );
    }


    .footer-brand::after,
    .footer-column::after {
        display: none;
    }


    .footer-social-column {
        border-bottom:
            none;

        padding-bottom:
            0;
    }


    .footer-logo {
        width:
            210px;
    }


    .footer-brand-description {
        font-size:
            16px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .site-footer {
        border-radius:
            25px
            25px
            0
            0;
    }


    .footer-main {
        padding:
            50px
            0
            38px;
    }


    .footer-container {
        width:
            calc(
                100% - 32px
            );
    }


    .footer-title {
        font-size:
            20px;

        margin-bottom:
            22px;
    }


    .footer-brand {
        align-items:
            center;

        text-align:
            center;
    }


    .footer-brand-description {
        margin-top:
            24px;

        font-size:
            15px;

        line-height:
            1.9;
    }


    .footer-links a {
        min-height:
            56px;

        font-size:
            16px;
    }


    .footer-contact-item {
        min-height:
            62px;

        font-size:
            15px;
    }


    .footer-social-links {
        justify-content:
            flex-start;
    }


    .footer-social-btn {
        width:
            50px;

        height:
            50px;
    }


    .newsletter-form {
        max-width:
            100%;
    }


    .footer-bottom-container {
        width:
            calc(
                100% - 30px
            );

        min-height:
            70px;
    }


    .footer-bottom p {
        font-size:
            13px;

        line-height:
            1.7;
    }

}
/* =====================================================
   PRODUCTS PAGE
===================================================== */

.products-page {
    width: 100%;

    background:
        #ffffff;
}


.products-catalog-section {
    width: 100%;

    padding:
        70px
        0
        100px;

    background:
        #ffffff;
}


.products-page-container {
    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    margin:
        0 auto;
}


/* =====================================================
   FILTER BAR
===================================================== */

.products-filter-bar {
    width: 100%;

    min-height: 82px;

    padding:
        13px
        18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

    margin-bottom:
        38px;

    border:
        1px solid
        #e3e9e5;

    border-radius:
        15px;

    background:
        #ffffff;

    box-shadow:
        0
        6px
        22px
        rgba(
            0,
            70,
            42,
            0.035
        );
}


/* =====================================================
   FILTER BUTTONS
===================================================== */

.products-filter-buttons {
    flex: 1;

    display: flex;

    align-items: center;

    gap:
        13px;
}


.product-filter {
    min-width:
        115px;

    min-height:
        48px;

    padding:
        0
        20px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        9px;

    border:
        1px solid
        #dfe6e2;

    border-radius:
        12px;

    background:
        #ffffff;

    color:
        #232925;

    font-size:
        15px;

    font-weight:
        600;

    cursor:
        pointer;

    transition:
        0.2s ease;
}


.product-filter svg {
    width:
        18px;

    height:
        18px;

    fill:
        none;

    stroke:
        #75a934;

    stroke-width:
        1.8;

    stroke-linecap:
        round;

    stroke-linejoin:
        round;
}


.product-filter:hover {
    border-color:
        var(--green);

    color:
        var(--green);
}


.product-filter.active {
    border-color:
        var(--green);

    background:
        var(--green);

    color:
        #ffffff;
}


.product-filter.active svg {
    stroke:
        #ffffff;
}


/* =====================================================
   SEARCH
===================================================== */

.products-local-search {
    width:
        315px;

    min-height:
        48px;

    padding:
        0
        16px;

    display:
        flex;

    align-items:
        center;

    gap:
        12px;

    border:
        1px solid
        #dfe6e2;

    border-radius:
        12px;

    background:
        #ffffff;
}


.products-local-search svg {
    width:
        21px;

    height:
        21px;

    flex-shrink:
        0;

    fill:
        none;

    stroke:
        var(--green);

    stroke-width:
        2;
}


.products-local-search input {
    width:
        100%;

    border:
        none;

    outline:
        none;

    background:
        transparent;

    font-size:
        14px;

    text-align:
        right;
}


.products-local-search input::placeholder {
    color:
        #a6aca8;
}


/* =====================================================
   PRODUCT GROUP
===================================================== */

.product-group {
    width:
        100%;

    margin-bottom:
        55px;
}


.product-group.is-hidden {
    display:
        none;
}


/* =====================================================
   GROUP TITLE
===================================================== */

.product-group-title {
    margin:
        0
        0
        20px;

    font-size:
        32px;

    font-weight:
        700;

    line-height:
        1.3;

    text-align:
        right;
}


.fresh-title {
    color:
        var(--green);
}


.frozen-title {
    color:
        #07579b;
}


.frozen-vegetables-title {
    color:
        #005638;
}


/* =====================================================
   GRID
===================================================== */

.product-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            minmax(
                0,
                1fr
            )
        );

    gap:
        22px;
}


/* =====================================================
   PRODUCT CARD
===================================================== */

.catalog-product-card {
    position:
        relative;

    min-height:
        310px;

    display:
        grid;

    grid-template-columns:
        48%
        52%;

    overflow:
        hidden;

    border:
        1px solid
        #dde5e0;

    border-radius:
        15px;

    background:
        #ffffff;

    direction:
        ltr;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease;
}


.catalog-product-card:hover {
    transform:
        translateY(-3px);

    border-color:
        rgba(
            0,
            87,
            56,
            0.22
        );

    box-shadow:
        0
        15px
        34px
        rgba(
            0,
            65,
            38,
            0.07
        );
}


.catalog-product-card.is-hidden {
    display:
        none;
}


/* =====================================================
   IMAGE AREA
===================================================== */

.catalog-product-image {
    position:
        relative;

    width:
        100%;

    height:
        100%;

    min-height:
        305px;

    padding:
        25px
        12px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    overflow:
        hidden;

    background:
        linear-gradient(
            135deg,
            #fbfcfb,
            #ffffff
        );
}


.catalog-product-image img {
    display:
        block;

    width:
        100%;

    height:
        100%;

    max-width:
        310px;

    max-height:
        245px;

    object-fit:
        contain;

    object-position:
        center;

    background:
        transparent;
}


/* =====================================================
   STATUS BADGE
===================================================== */

.product-status {
    position:
        absolute;

    top:
        17px;

    left:
        17px;

    z-index:
        5;

    min-width:
        54px;

    min-height:
        30px;

    padding:
        0
        10px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        7px;

    color:
        #ffffff;

    font-size:
        12px;

    font-weight:
        600;
}


.product-status.fresh {
    background:
        var(--green);
}


.product-status.frozen {
    background:
        #07579b;
}


/* =====================================================
   PRODUCT CONTENT
===================================================== */

.catalog-product-content {
    min-width:
        0;

    padding:
        28px
        25px
        22px;

    display:
        flex;

    flex-direction:
        column;

    direction:
        rtl;

    text-align:
        right;
}


.catalog-product-content h3 {
    margin:
        0;

    color:
        var(--green);

    font-size:
        24px;

    font-weight:
        700;

    line-height:
        1.35;
}


.frozen-card-product
.catalog-product-content h3 {
    color:
        #07579b;
}


.catalog-product-description {
    margin:
        9px
        0
        18px;

    color:
        #535c57;

    font-size:
        13px;

    line-height:
        1.7;
}


/* =====================================================
   PRODUCT INFO
===================================================== */

.product-info-list {
    margin:
        0;

    padding:
        0;

    list-style:
        none;

    display:
        flex;

    flex-direction:
        column;

    gap:
        10px;
}


.product-info-list li {
    display:
        grid;

    grid-template-columns:
        75px
        1fr;

    gap:
        8px;

    align-items:
        center;

    color:
        #555d59;

    font-size:
        13px;
}


.product-info-list li span {
    color:
        #606864;
}


.product-info-list li strong {
    color:
        #242a26;

    font-weight:
        600;
}


/* =====================================================
   DETAILS BUTTON
===================================================== */

.catalog-details-btn {
    width:
        175px;

    min-height:
        42px;

   margin-top: 32px;

    padding:
        0
        18px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        15px;

    align-self:
        flex-start;

    border:
        1px solid
        var(--green);

    border-radius:
        8px;

    background:
        var(--green);

    color:
        #ffffff;

    font-size:
        14px;

    font-weight:
        600;

    transition:
        0.2s ease;
}


.catalog-details-btn span {
    font-size:
        22px;

    line-height:
        1;
}


.catalog-details-btn:hover {
    transform:
        translateY(-1px);

    background:
        #00462e;
}


/* =====================================================
   INFORMATION GRID
===================================================== */

.products-information-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap:
        22px;

    margin-top:
        25px;
}


/* =====================================================
   INFO PANEL
===================================================== */

.product-info-panel {
    min-height:
        200px;

    padding:
        28px;

    border-radius:
        14px;
}


.product-info-panel h3 {
    margin:
        0
        0
        24px;

    font-size:
        22px;

    font-weight:
        700;

    text-align:
        center;
}


/* =====================================================
   COMPARISON
===================================================== */

.comparison-panel {
    background:
        linear-gradient(
            135deg,
            #f5faff,
            #eaf4fd
        );

    border:
        1px solid
        #e0edf8;
}


.comparison-panel h3 {
    color:
        #07579b;
}


.comparison-items {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );
}


.comparison-items > div {
    padding:
        0
        22px;
}


.comparison-items > div:first-child {
    border-left:
        1px solid
        #ccdce8;
}


.comparison-items strong {
    display:
        block;

    margin-bottom:
        8px;

    color:
        var(--green);

    font-size:
        16px;
}


.comparison-items p {
    margin:
        0;

    color:
        #555e59;

    font-size:
        13px;

    line-height:
        1.8;
}


/* =====================================================
   EXPORT QUALITY
===================================================== */

.export-quality-panel {
    background:
        linear-gradient(
            135deg,
            #f7faf5,
            #eef5e9
        );

    border:
        1px solid
        #e3ebdf;
}


.export-quality-panel h3 {
    color:
        var(--green);
}


.export-features {
    display:
        grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap:
        15px;
}


.export-features > div {
    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        11px;

    text-align:
        center;
}


.export-icon {
    width:
        52px;

    height:
        52px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    border:
        1px solid
        rgba(
            0,
            87,
            56,
            0.22
        );

    border-radius:
        50%;

    color:
        var(--green);

    font-size:
        22px;
}


.export-features strong {
    color:
        #334039;

    font-size:
        12px;

    line-height:
        1.5;
}


/* =====================================================
   CTA
===================================================== */

.products-cta {
    position:
        relative;

    min-height:
        190px;

    margin-top:
        35px;

    padding:
        25px
        35px;

    display:
        grid;

    grid-template-columns:
        38%
        62%;

    align-items:
        center;

    overflow:
        hidden;

    border:
        1px solid
        #e2e9e4;

    border-radius:
        15px;

    background:
        linear-gradient(
            100deg,
            #fafdf8,
            #ffffff
        );

    direction:
        ltr;
}


.products-cta-image {
    width:
        100%;

    height:
        170px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;
}


.products-cta-image img {
    width:
        100%;

    max-width:
        330px;

    max-height:
        165px;

    object-fit:
        contain;

    background:
        transparent;
}


.products-cta-content {
    direction:
        rtl;

    text-align:
        right;
}


.products-cta-content h2 {
    margin:
        0;

    color:
        var(--green);

    font-size:
        27px;

    font-weight:
        700;
}


.products-cta-content p {
    margin:
        9px
        0
        20px;

    color:
        #505a54;

    font-size:
        14px;
}


.products-cta-actions {
    display:
        flex;

    gap:
        13px;
}


.cta-contact-btn,
.cta-quote-btn {
    min-width:
        175px;

    min-height:
        44px;

    padding:
        0
        20px;

    display:
        inline-flex;

    align-items:
        center;

    justify-content:
        center;

    border-radius:
        8px;

    font-size:
        14px;

    font-weight:
        600;
}


.cta-contact-btn {
    color:
        #ffffff;

    background:
        var(--green);

    border:
        1px solid
        var(--green);
}


.cta-quote-btn {
    color:
        var(--green);

    background:
        #ffffff;

    border:
        1px solid
        var(--green);
}


/* =====================================================
   NO RESULTS
===================================================== */

.products-no-results {
    display:
        none;

    padding:
        50px;

    margin:
        30px
        0;

    border:
        1px solid
        #e2e8e4;

    border-radius:
        14px;

    color:
        #6a716d;

    font-size:
        17px;

    text-align:
        center;

    background:
        #fafcfa;
}


.products-no-results.show {
    display:
        block;
}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 1100px) {

    .products-page-container {
        width:
            calc(
                100% - 50px
            );
    }


    .products-filter-bar {
        flex-direction:
            column;

        align-items:
            stretch;
    }


    .products-filter-buttons {
        flex-wrap:
            wrap;
    }


    .products-local-search {
        width:
            100%;
    }


    .catalog-product-card {
        grid-template-columns:
            44%
            56%;
    }


    .catalog-product-content {
        padding:
            22px
            18px;
    }

}


@media (max-width: 850px) {

    .product-grid {
        grid-template-columns:
            1fr;
    }


    .products-information-grid {
        grid-template-columns:
            1fr;
    }


    .products-cta {
        grid-template-columns:
            1fr;
    }


    .products-cta-image {
        height:
            160px;
    }

}


@media (max-width: 600px) {

    .products-catalog-section {
        padding:
            45px
            0
            60px;
    }


    .products-page-container {
        width:
            calc(
                100% - 28px
            );
    }


    .products-filter-buttons {
        display:
            grid;

        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .product-filter {
        width:
            100%;

        min-width:
            0;
    }


    .product-filter:first-child {
        grid-column:
            1 / -1;
    }


    .product-group-title {
        font-size:
            32px;
    }


    .catalog-product-card {
        display:
            flex;

        flex-direction:
            column;
    }


    .catalog-product-image {
        min-height:
            230px;
    }


    .catalog-product-image img {
        max-height:
            210px;
    }


    .catalog-product-content h3 {
        font-size:
            21px;
    }


    .catalog-details-btn {
        margin-top:
            20px;
    }


    .export-features {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .comparison-items {
        grid-template-columns:
            1fr;

        gap:
            20px;
    }


    .comparison-items > div:first-child {
        border-left:
            none;

        border-bottom:
            1px solid
            #ccdce8;

        padding-bottom:
            20px;
    }


    .products-cta {
        padding:
            25px
            18px;
    }


    .products-cta-content {
        text-align:
            center;
    }


    .products-cta-content h2 {
        font-size:
            23px;
    }


    .products-cta-actions {
        flex-direction:
            column;
    }


    .cta-contact-btn,
    .cta-quote-btn {
        width:
            100%;
    }

}

/* =====================================================
   ABOUT PAGE
===================================================== */

.about-page {
    width: 100%;
    background: #ffffff;
}


.about-container {
    width:
        min(
            1440px,
            calc(100% - 80px)
        );

    margin:
        0 auto;
}


/* =====================================================
   COMPANY INTRO
===================================================== */

.about-company-section {
    width: 100%;

    padding:
        80px
        0
        50px;

    background:
        #ffffff;
}


.about-company-grid {
    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr;

    align-items: center;

    gap: 90px;

    direction: rtl;
}


/* =====================================================
   CONTENT
===================================================== */

.about-company-content {
    text-align: right;
}


.about-small-title {
    display: inline-block;

    margin-bottom: 14px;

    color:
        var(--green);

    font-size: 18px;

    font-weight: 700;
}


.about-company-content h1 {
    margin: 0;

    color:
        var(--green);

    font-size:
        clamp(
            38px,
            3.3vw,
            52px
        );

    font-weight: 800;

    line-height: 1.25;
}


.about-company-content h1 span {
    display: inline;
}


.about-company-content p {
    max-width: 650px;

    margin:
        20px
        0
        0;

    color:
        #424b46;

    font-size: 17px;

    line-height: 2;
}


.about-contact-btn {
    min-width: 150px;

    min-height: 48px;

    margin-top: 28px;

    padding:
        0
        24px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(
            0,
            87,
            56,
            0.4
        );

    border-radius: 9px;

    background:
        #ffffff;

    color:
        var(--green);

    font-size: 15px;

    font-weight: 600;

    transition: 0.2s ease;
}


.about-contact-btn:hover {
    color: #ffffff;

    background:
        var(--green);
}


/* =====================================================
   COMPANY IMAGE
===================================================== */

.about-company-image {
    width: 100%;

    overflow: hidden;

    border-radius: 20px;

    box-shadow:
        0
        12px
        30px
        rgba(
            0,
            60,
            35,
            0.08
        );
}


.about-company-image img {
    display: block;

    width: 100%;
    height: 440px;

    object-fit: cover;

    object-position: center;

    border-radius: inherit;
}


/* =====================================================
   GENERAL SECTION TITLE
===================================================== */

.about-section-title {
    width: 100%;

    margin-bottom: 30px;

    text-align: center;
}


.about-section-title h2 {
    margin: 0;

    color:
        var(--green);

    font-size: 32px;

    font-weight: 700;
}


/* =====================================================
   WHY SECTION
===================================================== */

.about-why-section {
    width: 100%;

    padding:
        100px
        0
        40px;

    background:
        #ffffff;
}


.about-features-grid {
    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    gap: 22px;
}


/* =====================================================
   FEATURE CARD
===================================================== */

.about-feature-card {
    min-height: 245px;

    padding:
        28px
        24px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: flex-start;

    border:
        1px solid
        #e0e7e2;

    border-radius: 15px;

    background:
        #ffffff;

    text-align: center;

    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}


.about-feature-card:hover {
    transform:
        translateY(-4px);

    box-shadow:
        0
        12px
        28px
        rgba(
            0,
            70,
            42,
            0.07
        );
}


/* =====================================================
   FEATURE ICON
===================================================== */

.about-feature-icon {
    width: 70px;
    height: 70px;

    margin-bottom: 20px;

    display: flex;

    align-items: center;
    justify-content: center;

    color:
        var(--green);
}


.about-feature-icon svg {
    width: 58px;
    height: 58px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.5;

    stroke-linecap: round;
    stroke-linejoin: round;
}


.about-feature-card h3 {
    margin: 0;

    color:
        var(--green);

    font-size: 18px;

    font-weight: 700;
}


.about-feature-card p {
    margin:
        14px
        0
        0;

    color:
        #555e59;

    font-size: 13px;

    line-height: 1.8;
}


/* =====================================================
   CERTIFICATES
===================================================== */

.about-certificates-section {
    width: 100%;

    padding:
        60px
        0
        50px;

    background:
        #ffffff;
}


.about-certificates-box {
    width: 100%;

    min-height: 150px;

    padding:
        25px
        35px;

    display: grid;

    grid-template-columns:
        repeat(
            4,
            1fr
        );

    align-items: center;

    border:
        1px solid
        #e1e7e3;

    border-radius: 15px;

    background:
        #ffffff;
}


.about-certificate {
    min-height: 95px;

    display: flex;

    align-items: center;
    justify-content: center;

    padding:
        10px
        25px;
}


.about-certificate img {
    display: block;

    width: 100%;

    max-width: 150px;

    max-height: 90px;

    object-fit: contain;

    object-position: center;
}


/* =====================================================
   ABOUT CTA
===================================================== */

.about-cta-section {
    width: 100%;

    padding:
        40px
        0
        100px;

    background:
        #ffffff;
}


.about-cta-box {
    position: relative;

    min-height: 190px;

    padding:
        30px
        40px;

    display: grid;

    grid-template-columns:
        1.1fr
        0.9fr
        1fr;

    align-items: center;

    gap: 30px;

    overflow: hidden;

    border-radius: 16px;

    background:
        linear-gradient(
            110deg,
            #004a32,
            #00613e
        );

    direction: rtl;
}


/* =====================================================
   CTA CONTENT
===================================================== */

.about-cta-content {
    position: relative;

    z-index: 4;

    color: #ffffff;
}


.about-cta-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: 31px;

    font-weight: 700;
}


.about-cta-content p {
    max-width: 440px;

    margin:
        13px
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.85
        );

    font-size: 14px;

    line-height: 1.8;
}


/* =====================================================
   CTA BUTTONS
===================================================== */

.about-cta-actions {
    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;
}


.about-cta-primary,
.about-cta-secondary {
    min-width: 145px;

    min-height: 45px;

    padding:
        0
        20px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 10px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 600;

    transition: 0.2s ease;
}


.about-cta-primary {
    color: #ffffff;

    background:
        transparent;

    border:
        1px solid
        rgba(
            255,
            255,
            255,
            0.7
        );
}


.about-cta-primary svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke:
        currentColor;

    stroke-width: 1.8;
}


.about-cta-primary:hover {
    color:
        var(--green);

    background:
        #ffffff;
}


.about-cta-secondary {
    color:
        var(--green);

    background:
        #ffffff;

    border:
        1px solid
        #ffffff;
}


.about-cta-secondary:hover {
    transform:
        translateY(-2px);
}


/* =====================================================
   CTA IMAGE
===================================================== */

.about-cta-image {
    position: relative;

    height: 160px;

    display: flex;

    align-items: center;
    justify-content: flex-end;
}


.about-cta-image img {
    display: block;

    width: 120%;

    max-width: 330px;

    height: 180px;

    object-fit: cover;

    object-position: center;

    border-radius:
        70px
        0
        0
        70px;
}


/* =====================================================
   RESPONSIVE - LAPTOP
===================================================== */

@media (max-width: 1150px) {

    .about-container {
        width:
            calc(
                100% - 50px
            );
    }


    .about-company-grid {
        gap: 45px;
    }


    .about-company-image img {
        height: 380px;
    }


    .about-features-grid {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .about-company-section {
        padding-top: 60px;
    }


    .about-company-grid {
        grid-template-columns:
            1fr;

        gap: 45px;
    }


    .about-company-content {
        text-align: center;
    }


    .about-company-content p {
        margin-inline: auto;
    }


    .about-company-image {
        max-width: 650px;

        margin: 0 auto;
    }


    .about-certificates-box {
        grid-template-columns:
            repeat(
                2,
                1fr
            );
    }


    .about-cta-box {
        grid-template-columns:
            1fr
            1fr;
    }


    .about-cta-content {
        grid-column:
            1 / -1;

        text-align: center;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-container {
        width:
            calc(
                100% - 28px
            );
    }


    .about-company-section {
        padding:
            45px
            0
            20px;
    }


    .about-company-content h1 {
        font-size: 36px;
    }


    .about-company-content p {
        font-size: 15px;

        line-height: 1.9;
    }


    .about-company-image img {
        height: 280px;
    }


    .about-why-section {
        padding-top: 70px;
    }


    .about-section-title h2 {
        font-size: 32px;
    }


    .about-features-grid {
        grid-template-columns:
            1fr;
    }


    .about-feature-card {
        min-height: 215px;
    }


    .about-certificates-box {
        grid-template-columns:
            repeat(
                2,
                1fr
            );

        padding:
            20px
            10px;
    }


    .about-certificate img {
        max-width: 115px;
    }


    .about-cta-section {
        padding-bottom: 60px;
    }


    .about-cta-box {
        grid-template-columns:
            1fr;

        padding:
            30px
            20px;

        text-align: center;
    }


    .about-cta-content h2 {
        font-size: 27px;
    }


    .about-cta-actions {
        flex-direction: column;
    }


    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
    }


    .about-cta-image {
        height: 150px;

        justify-content: center;
    }


    .about-cta-image img {
        width: 100%;

        height: 150px;

        border-radius: 12px;
    }

}

/* =====================================================
   ABOUT CTA - FINAL OVERRIDE
   الصورة طالعة من الجنب اليمين بدون Fade
===================================================== */

.about-cta-section {
    width: 100%;
    padding: 42px 0 100px;
    background: #ffffff;
}

.about-cta-box {
    position: relative;
    width: 100%;
    min-height: 235px;
    padding: 42px 46px;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(
        110deg,
        #004b31 0%,
        #005b38 54%,
        #006640 100%
    );
    box-shadow: 0 16px 36px rgba(0, 70, 42, 0.10);

    /*
       مهم:
       السيكشن نفسه مش Grid هنا،
       لأن الصورة Absolute على اليمين
       والمحتوى ياخد المساحة الشمال براحة.
    */
    display: block;
    direction: ltr;
}

/* زخرفة خفيفة فقط في الناحية الشمال */
.about-cta-box::before {
    content: "";
    position: absolute;
    left: 70px;
    top: 50%;
    width: 230px;
    height: 230px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.028);
    pointer-events: none;
}

/* =====================================================
   CONTENT
===================================================== */

.about-cta-content {
    position: relative;
    z-index: 5;

    /*
       نسيب مساحة واضحة للصورة ناحية اليمين
    */
    width: 56%;
    min-height: 150px;

    margin: 0;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    direction: rtl;
    text-align: right;

    color: #ffffff;
}

.about-cta-content h2 {
    margin: 0;

    color: #ffffff;

    font-size: 31px;
    font-weight: 800;
    line-height: 1.3;
}

.about-cta-content h2::after {
    content: "";

    display: inline-block;

    width: 14px;
    height: 9px;

    margin-right: 10px;

    border-radius: 100% 0 100% 0;

    background: #96c33a;

    transform: rotate(-25deg);

    vertical-align: middle;
}

.about-cta-content p {
    max-width: 500px;

    margin: 13px 0 0;

    color: rgba(255, 255, 255, 0.88);

    font-size: 15px;
    line-height: 1.9;
}

/* =====================================================
   BUTTONS
===================================================== */

.about-cta-actions {
    position: relative;
    z-index: 6;

    width: 100%;

    margin-top: 24px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 13px;

    direction: rtl;
}

.about-cta-primary,
.about-cta-secondary {
    min-width: 150px;
    min-height: 46px;

    padding: 0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 9px;

    border-radius: 9px;

    font-size: 14px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.about-cta-primary svg,
.about-cta-secondary svg {
    width: 18px;
    height: 18px;

    flex-shrink: 0;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-cta-primary {
    color: #ffffff;

    border: 1px solid rgba(255, 255, 255, 0.78);

    background: transparent;
}

.about-cta-primary:hover {
    color: var(--green);

    border-color: #ffffff;

    background: #ffffff;

    transform: translateY(-2px);
}

.about-cta-secondary {
    color: var(--green);

    border: 1px solid #ffffff;

    background: #ffffff;
}

.about-cta-secondary:hover {
    background: #f5f9f6;

    transform: translateY(-2px);
}

/* =====================================================
   IMAGE
   الصورة عادية وواضحة وطالعة من الجنب اليمين
===================================================== */

.about-cta-image {
    position: absolute;

    top: 0;
    right: -18px;
    bottom: 0;

    z-index: 3;

    width: 43%;
    height: 100%;

    min-height: 235px;

    display: block;

    overflow: hidden;

    pointer-events: none;

    /*
       إلغاء أي إعداد قديم
    */
    border-radius: 0;
    background: transparent;
}

/*
   مفيش Fade نهائي
*/
.about-cta-image::before,
.about-cta-image::after {
    content: none !important;
    display: none !important;
}

.about-cta-image img {
    position: absolute;

    top: 0;
    right: 0;

    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    margin: 0;

    object-fit: cover;
    object-position: right center;

    border-radius: 0;

    background: transparent;

    /*
       إلغاء تأثيرات النسخة القديمة
    */
    filter: none;
    opacity: 1;
    transform: none;
}

/* =====================================================
   LAPTOP
===================================================== */

@media (max-width: 1150px) {

    .about-cta-box {
        min-height: 225px;

        padding:
            38px
            34px;
    }

    .about-cta-content {
        width: 58%;
    }

    .about-cta-content h2 {
        font-size: 28px;
    }

    .about-cta-content p {
        max-width: 440px;
        font-size: 14px;
    }

    .about-cta-image {
        width: 42%;
        min-height: 225px;
        right: -14px;
    }
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 850px) {

    .about-cta-box {
        min-height: 410px;

        padding:
            32px
            28px
            205px;
    }

    .about-cta-content {
        width: 100%;
        min-height: auto;

        align-items: center;

        text-align: center;
    }

    .about-cta-content p {
        margin-inline: auto;
    }

    .about-cta-actions {
        justify-content: center;
    }

    .about-cta-image {
        top: auto;
        right: -10px;
        bottom: 0;

        width: 58%;
        height: 205px;
        min-height: 205px;
    }

    .about-cta-image img {
        object-position: right center;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .about-cta-section {
        padding:
            30px
            0
            60px;
    }

    .about-cta-box {
        min-height: 520px;

        padding:
            28px
            20px
            225px;

        border-radius: 16px;
    }

    .about-cta-box::before {
        width: 170px;
        height: 170px;

        left: 15px;
    }

    .about-cta-content {
        width: 100%;
    }

    .about-cta-content h2 {
        font-size: 25px;
    }

    .about-cta-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-cta-actions {
        width: 100%;

        flex-direction: column;

        gap: 10px;
    }

    .about-cta-primary,
    .about-cta-secondary {
        width: 100%;
    }

    .about-cta-image {
        right: -12px;
        bottom: 0;

        width: 78%;
        height: 220px;
        min-height: 220px;
    }

    .about-cta-image img {
        object-position: right center;
    }
}

/* =====================================================
   GLOBAL TYPOGRAPHY & UI SCALE — FINAL PROJECT RULES
   Requested project-wide normalization
===================================================== */

/* Header / Hero titles = 48px, medium/semibold */
.hero-title,
.hero-title span,
.about-company-content h1,
.about-company-content h1 span {
    font-size: 48px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;
}

/* Every section title = 34px, medium/semibold */
.section-title h2,
.season-section-heading h2,
.why-alasl h2,
.featured-section-title h2,
.product-group-title,
.products-cta-content h2,
.product-info-panel > h3,
.about-section-title h2,
.about-cta-content h2,
.about-certificates-section .about-section-title h2 {
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

/* Section subtitles / product-card headings = minimum 24px */
.category-heading h3,
.season-card-content h3,
.featured-card-content h3,
.catalog-product-content h3,
.about-feature-card h3,
.comparison-items strong,
.export-quality-panel h3,
.comparison-panel h3 {
    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.4 !important;
}

/* Any descriptive copy = 16px regular */
.hero-description,
.category-heading p,
.season-section-heading p,
.catalog-product-description,
.products-cta-content p,
.comparison-items p,
.about-company-content p,
.about-feature-card p,
.about-cta-content p,
.footer-brand-description,
.footer-newsletter p {
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.85 !important;
}

/* Main buttons = 20px bold */
.hero-btn-primary,
.category-view-btn,
.cta-contact-btn,
.about-cta-primary {
    font-size: 20px !important;
    font-weight: 700 !important;
}

/* Secondary buttons = 16px bold */
.hero-btn-secondary,
.season-all-btn,
.season-details-btn,
.featured-product-btn,
.product-filter,
.catalog-details-btn,
.cta-quote-btn,
.about-contact-btn,
.about-cta-secondary {
    font-size: 16px !important;
    font-weight: 700 !important;
}

/* Navbar remains clean and readable */
.nav-link,
#currentLanguage,
.language-option {
    font-size: 16px !important;
    font-weight: 500 !important;
}

/* No functional icon smaller than 24x24 */
.search-btn svg,
.globe-icon,
.language-arrow,
.hero-btn svg,
.category-view-btn svg,
.season-all-btn svg,
.season-details-btn svg,
.season-arrow svg,
.featured-arrow svg,
.feature-icon svg,
.about-feature-icon svg,
.catalog-details-btn svg,
.product-filter svg,
.products-local-search svg,
.about-cta-primary svg,
.about-cta-secondary svg,
.footer-contact-icon svg,
.footer-social-btn svg,
.newsletter-form button svg {
    min-width: 24px !important;
    min-height: 24px !important;
}

/* Product circles cannot be smaller than 56x56 */
.mini-product-image {
    width: 56px !important;
    height: 56px !important;
    min-width: 56px !important;
    min-height: 56px !important;
    border-radius: 50% !important;
}

.mini-product-image img {
    max-width: 48px !important;
    max-height: 48px !important;
}

/* Product page circular visuals / icon circles */
.export-icon {
    min-width: 56px !important;
    min-height: 56px !important;
}

/* Keep buttons comfortable with the larger text */
.hero-btn,
.category-view-btn,
.cta-contact-btn,
.cta-quote-btn,
.about-cta-primary,
.about-cta-secondary {
    min-height: 52px;
    padding-inline: 22px;
}

.season-details-btn,
.season-all-btn,
.featured-product-btn,
.catalog-details-btn,
.about-contact-btn,
.product-filter {
    min-height: 46px;
}

/* Prevent old mobile rules from shrinking the specified typography */
@media (max-width: 650px) {
    .hero-title,
    .hero-title span,
    .about-company-content h1,
    .about-company-content h1 span {
        font-size: 48px !important;
    }

    .section-title h2,
    .season-section-heading h2,
    .why-alasl h2,
    .featured-section-title h2,
    .product-group-title,
    .products-cta-content h2,
    .product-info-panel > h3,
    .about-section-title h2,
    .about-cta-content h2,
    .about-certificates-section .about-section-title h2 {
        font-size: 34px !important;
    }

    .category-heading h3,
    .season-card-content h3,
    .featured-card-content h3,
    .catalog-product-content h3,
    .about-feature-card h3 {
        font-size: 24px !important;
    }

    .hero-description,
    .category-heading p,
    .season-section-heading p,
    .catalog-product-description,
    .products-cta-content p,
    .comparison-items p,
    .about-company-content p,
    .about-feature-card p,
    .about-cta-content p {
        font-size: 16px !important;
    }

    .mini-product-image {
        width: 56px !important;
        height: 56px !important;
    }
}


/* =========================================================
   FINAL CONSOLIDATED PROJECT OVERRIDES
========================================================= */

/* ---------- Certificates ---------- */
.about-certificates-section{width:100%;padding:55px 0 50px!important;background:#fff}
.about-certificates-section .about-section-title{margin-bottom:28px!important}
.about-certificates-section .about-section-title h2{margin:0!important;font-size:34px!important;font-weight:600!important;line-height:1.35!important;color:#005738!important;text-align:center!important}
.about-certificates-box{width:100%!important;min-height:185px!important;padding:25px 45px!important;display:grid!important;grid-template-columns:repeat(4,minmax(0,1fr))!important;align-items:center!important;gap:35px!important;border:1px solid #dfe7e2!important;border-radius:16px!important;background:#fff!important;direction:ltr!important;box-sizing:border-box!important}
.about-certificate{width:100%!important;min-width:0!important;min-height:130px!important;padding:8px 10px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:7px!important;text-align:center!important;background:transparent!important;border:0!important;box-shadow:none!important;direction:rtl!important}
.certificate-logo{width:100%!important;height:75px!important;display:flex!important;align-items:center!important;justify-content:center!important;margin:0!important;padding:0!important;overflow:visible!important}
.certificate-logo img,.about-certificate:nth-child(1) .certificate-logo img,.about-certificate:nth-child(2) .certificate-logo img,.about-certificate:nth-child(3) .certificate-logo img,.about-certificate:nth-child(4) .certificate-logo img{display:block!important;width:auto!important;height:auto!important;max-width:150px!important;max-height:72px!important;object-fit:contain!important;margin:auto!important;opacity:1!important;visibility:visible!important;transform:none!important}
.certificate-content{width:100%!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;gap:4px!important;text-align:center!important;margin:0!important;padding:0!important}
.certificate-content h3{margin:0!important;font-size:16px!important;font-weight:600!important;line-height:1.4!important;color:#163f2d!important;text-align:center!important;direction:ltr!important}
.certificate-content p{margin:0!important;font-size:14px!important;font-weight:400!important;line-height:1.55!important;color:#68716c!important;text-align:center!important}

/* ---------- About CTA ---------- */
.about-cta-section{width:100%!important;padding:40px 0 90px!important;background:#fff!important}
.about-cta-box{position:relative!important;width:100%!important;min-height:220px!important;padding:0!important;display:grid!important;grid-template-columns:40% 27% 33%!important;grid-template-areas:"content actions image"!important;align-items:stretch!important;overflow:hidden!important;border-radius:18px!important;background:linear-gradient(110deg,#004b31 0%,#005b38 52%,#00633e 100%)!important;box-shadow:0 16px 36px rgba(0,70,42,.10)!important;direction:ltr!important}
.about-cta-box::before{content:""!important;position:absolute!important;left:55px!important;top:50%!important;width:210px!important;height:210px!important;transform:translateY(-50%)!important;border-radius:50%!important;background:rgba(255,255,255,.035)!important;pointer-events:none!important;z-index:1!important}
.about-cta-content{grid-area:content!important;position:relative!important;z-index:5!important;width:auto!important;min-height:220px!important;padding:32px 15px 32px 42px!important;display:flex!important;flex-direction:column!important;align-items:flex-start!important;justify-content:center!important;direction:rtl!important;text-align:right!important}
.about-cta-content h2{margin:0!important;color:#fff!important;font-size:34px!important;font-weight:600!important;line-height:1.3!important}
.about-cta-content p{max-width:460px!important;margin:12px 0 0!important;color:rgba(255,255,255,.88)!important;font-size:16px!important;font-weight:400!important;line-height:1.8!important}
.about-cta-actions{grid-area:actions!important;position:relative!important;z-index:7!important;width:auto!important;margin:0!important;padding:25px 8px!important;display:flex!important;flex-direction:row!important;align-items:center!important;justify-content:center!important;gap:12px!important;direction:rtl!important}
.about-cta-primary,.about-cta-secondary{width:auto!important;min-width:145px!important;min-height:48px!important;margin:0!important;padding:0 18px!important;display:inline-flex!important;align-items:center!important;justify-content:center!important;gap:9px!important;border-radius:8px!important;font-size:16px!important;font-weight:700!important;line-height:1!important;white-space:nowrap!important}
.about-cta-primary{color:#fff!important;border:1px solid rgba(255,255,255,.75)!important;background:transparent!important}
.about-cta-secondary{color:#005738!important;border:1px solid #fff!important;background:#fff!important}
.about-cta-primary svg,.about-cta-secondary svg{width:24px!important;height:24px!important;min-width:24px!important;min-height:24px!important;fill:none!important;stroke:currentColor!important;stroke-width:1.7!important}
.about-cta-image{grid-area:image!important;position:relative!important;top:auto!important;right:auto!important;bottom:auto!important;z-index:3!important;width:100%!important;height:220px!important;min-height:220px!important;margin:0!important;padding:0!important;display:block!important;overflow:visible!important;background:transparent!important;border-radius:0!important}
.about-cta-image::before,.about-cta-image::after{content:none!important;display:none!important}
.about-cta-image img{position:absolute!important;top:0!important;right:-1px!important;bottom:0!important;left:auto!important;display:block!important;width:112%!important;height:100%!important;max-width:none!important;max-height:none!important;object-fit:cover!important;object-position:right center!important;margin:0!important;padding:0!important;border-radius:0!important;background:transparent!important;filter:none!important;opacity:1!important;transform:none!important}

/* ---------- Why AL ASL ---------- */
.why-alasl{width:100%!important;padding:0!important;margin:0!important;background:transparent!important}
.why-alasl-container{position:relative!important;width:min(1440px,calc(100% - 80px))!important;min-height:190px!important;margin:0 auto!important;padding:30px 42px!important;display:grid!important;grid-template-columns:1.4fr repeat(4,.7fr)!important;align-items:center!important;gap:0!important;overflow:hidden!important;border-radius:18px!important;background:linear-gradient(110deg,#004b31 0%,#005b38 55%,#00633e 100%)!important;box-shadow:0 16px 36px rgba(0,70,42,.10)!important}
.why-alasl-content{position:relative!important;z-index:3!important;min-width:0!important;padding-left:30px!important;border-left:1px solid rgba(255,255,255,.15)!important;color:#fff!important}
.why-alasl h2,.why-alasl-content h2{margin:0 0 18px!important;color:#fff!important;font-size:28px!important;font-weight:600!important;line-height:1.35!important;text-align:right!important}
.why-alasl-list{display:grid!important;grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:13px 22px!important;margin:0!important;padding:0!important;list-style:none!important}
.why-alasl-list li{display:flex!important;align-items:flex-start!important;gap:9px!important;margin:0!important;padding:0!important;color:rgba(255,255,255,.94)!important;font-size:14px!important;font-weight:500!important;line-height:1.6!important}
.why-alasl-list-icon,.why-alasl-list li svg{width:24px!important;height:24px!important;min-width:24px!important;min-height:24px!important;flex-shrink:0!important;color:#fff!important;stroke:currentColor!important}
.why-stat{position:relative!important;z-index:3!important;min-height:100px!important;padding:10px 20px!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:center!important;text-align:center!important;border-left:1px solid rgba(255,255,255,.12)!important}
.why-stat:last-child{border-left:0!important}
.why-stat strong,.why-stat-number{display:block!important;margin:0!important;color:#fff!important;font-size:42px!important;font-weight:700!important;line-height:1!important;direction:ltr!important}
.why-stat span,.why-stat-label{display:block!important;margin-top:9px!important;color:rgba(255,255,255,.88)!important;font-size:13px!important;font-weight:500!important;line-height:1.45!important}

/* ---------- Category cards ---------- */
.mini-product-image{width:68px!important;height:68px!important;min-width:68px!important;min-height:68px!important;border-radius:50%!important;display:flex!important;align-items:center!important;justify-content:center!important;overflow:hidden!important;background:#fff!important;border:1px solid #dfe7e2!important}
.mini-product-image img{width:56px!important;height:56px!important;max-width:56px!important;max-height:56px!important;object-fit:contain!important;object-position:center!important}
.mini-products{gap:18px!important}
.category-view-btn{width:78%!important;max-width:430px!important;min-width:260px!important;min-height:50px!important;margin:20px auto 0!important;display:flex!important;align-items:center!important;justify-content:center!important;gap:14px!important;font-size:20px!important;font-weight:700!important;border-radius:9px!important}
.category-view-btn svg{width:24px!important;height:24px!important;min-width:24px!important;min-height:24px!important}

/* ---------- Season cards ---------- */
.season-card{position:relative!important;min-height:290px!important;padding:24px 24px 20px!important;overflow:visible!important}
.season-card-image{position:absolute!important;left:22px!important;top:50%!important;transform:translateY(-50%)!important;width:190px!important;height:170px!important;display:flex!important;align-items:center!important;justify-content:center!important;overflow:visible!important;margin:0!important;padding:0!important}
.season-card-image img{display:block!important;width:100%!important;height:100%!important;max-width:190px!important;max-height:170px!important;object-fit:contain!important;object-position:center!important;margin:0 auto!important;padding:0!important;transform:none!important}
.season-card-content{width:calc(100% - 205px)!important;min-height:245px!important;margin-right:0!important;margin-left:auto!important;padding:0!important;display:flex!important;flex-direction:column!important;justify-content:flex-start!important;position:relative!important;z-index:2!important}
.season-card-content h3{margin:0 0 16px!important;font-size:24px!important;font-weight:600!important;line-height:1.35!important}
.season-months{width:100%!important;display:grid!important;grid-template-columns:repeat(8,minmax(0,1fr))!important;gap:7px!important;align-items:end!important;margin-bottom:18px!important}
.season-month{min-width:0!important;display:flex!important;flex-direction:column!important;align-items:center!important;justify-content:flex-end!important;gap:7px!important}
.season-month span,.season-month-name{font-size:12px!important;font-weight:500!important;line-height:1!important;color:#626b66!important;white-space:nowrap!important}
.season-dot{width:16px!important;height:16px!important;min-width:16px!important;min-height:16px!important;border-radius:50%!important;border:1px solid #d3dcd7!important;box-sizing:border-box!important}
.season-dot.active{background:#08764e!important;border-color:#08764e!important}
.season-details-btn{margin-top:auto!important;align-self:flex-start!important;min-width:135px!important;min-height:44px!important;font-size:16px!important}

/* ---------- Product cards ---------- */
.product-info-list{gap:12px!important}
.product-info-list li{font-size:16px!important;line-height:1.6!important;gap:10px!important}
.product-info-list li span{font-size:16px!important;font-weight:500!important;color:#5f6863!important}
.product-info-list li strong{font-size:16px!important;font-weight:600!important;color:#1f2924!important}
.catalog-product-description{font-size:16px!important;line-height:1.75!important}
.catalog-product-content h3{font-size:24px!important;font-weight:600!important}

/* ---------- Footer ---------- */
.footer-logo{width:230px!important;height:auto!important;display:flex!important;align-items:center!important;justify-content:center!important;margin:0 0 28px!important;padding:0!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;overflow:visible!important}
.footer-logo img{display:block!important;width:220px!important;height:auto!important;max-width:100%!important;object-fit:contain!important;background:transparent!important;border:0!important;border-radius:0!important;box-shadow:none!important;filter:brightness(0) invert(1)!important}
.footer-brand{background:transparent!important}
.footer-brand-description{margin-top:0!important;font-size:16px!important;font-weight:400!important;line-height:1.9!important;color:rgba(255,255,255,.88)!important}
.footer-links .footer-leaf{display:none!important}
.footer-links a::before,.footer-links a::after{content:none!important;display:none!important}
.footer-links a{width:100%!important;display:flex!important;align-items:center!important;justify-content:flex-start!important;padding:14px 0!important;color:#fff!important;font-size:16px!important;font-weight:500!important;border-bottom:1px dashed rgba(255,255,255,.16)!important;background:transparent!important}
.footer-links a:last-child{border-bottom:0!important}
.footer-title{font-size:24px!important;font-weight:600!important;color:#fff!important}

/* ---------- Responsive ---------- */
@media(max-width:950px){
  .about-certificates-box{grid-template-columns:repeat(2,1fr)!important}
  .about-cta-box{grid-template-columns:55% 45%!important;grid-template-areas:"content image" "actions image"!important}
  .about-cta-content{min-height:145px!important;padding:28px 24px 5px!important}
  .about-cta-actions{padding:5px 24px 25px!important;justify-content:flex-start!important}
  .about-cta-image{height:100%!important;min-height:260px!important}
}
@media(max-width:1050px){
  .why-alasl-container{grid-template-columns:repeat(2,1fr)!important;gap:25px 0!important;padding:30px!important}
  .why-alasl-content{grid-column:1/-1!important;padding:0 0 25px!important;border-left:0!important;border-bottom:1px solid rgba(255,255,255,.14)!important}
}
@media(max-width:900px){
  .mini-product-image{width:64px!important;height:64px!important;min-width:64px!important;min-height:64px!important}
  .mini-product-image img{width:52px!important;height:52px!important;max-width:52px!important;max-height:52px!important}
  .category-view-btn{width:82%!important}
}
@media(max-width:750px){
  .season-card{padding:22px!important}
  .season-card-image{position:relative!important;left:auto!important;top:auto!important;transform:none!important;width:100%!important;height:190px!important;margin-bottom:20px!important}
  .season-card-image img{max-width:220px!important;max-height:185px!important}
  .season-card-content{width:100%!important;min-height:auto!important}
}
@media(max-width:600px){
  .about-certificates-box{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important;padding:18px 10px!important}
  .about-cta-box{display:flex!important;flex-direction:column!important;min-height:auto!important}
  .about-cta-content{order:1!important;min-height:auto!important;padding:28px 20px 15px!important;align-items:center!important;text-align:center!important}
  .about-cta-actions{order:2!important;width:100%!important;padding:8px 20px 25px!important;flex-direction:column!important}
  .about-cta-primary,.about-cta-secondary{width:100%!important}
  .about-cta-image{order:3!important;width:100%!important;height:220px!important;min-height:220px!important}
  .about-cta-image img{width:100%!important;height:100%!important;right:0!important;object-position:right center!important}
  .why-alasl-container{width:calc(100% - 28px)!important;grid-template-columns:1fr!important;padding:28px 20px!important}
  .why-alasl-list{grid-template-columns:1fr!important;gap:12px!important}
  .why-stat{min-height:90px!important;border-left:0!important;border-bottom:1px solid rgba(255,255,255,.12)!important}
  .mini-product-image{width:60px!important;height:60px!important;min-width:60px!important;min-height:60px!important}
  .mini-product-image img{width:48px!important;height:48px!important;max-width:48px!important;max-height:48px!important}
  .category-view-btn{width:90%!important;min-width:0!important;font-size:17px!important}
  .product-info-list li,.product-info-list li span,.product-info-list li strong{font-size:15px!important}
  .footer-logo{width:190px!important;margin-inline:auto!important}
  .footer-logo img{width:180px!important}
}



/* =========================================================
   FINAL SEASON CARD CONTENT FIX
   Keeps left images untouched; repairs right-side layout.
========================================================= */

.season-card {
    position: relative !important;
    min-height: 305px !important;
    padding: 24px !important;
    overflow: visible !important;
}

/* right content block only */
.season-card-content {
    position: relative !important;
    z-index: 5 !important;

    width: 54% !important;
    min-width: 320px !important;

    margin-right: auto !important;
    margin-left: 0 !important;

    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    direction: rtl !important;
    text-align: right !important;

    overflow: visible !important;
}

/* product title */
.season-card-content h3 {
    width: 100% !important;
    margin: 0 0 14px !important;
    padding: 0 !important;

    color: #111 !important;

    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;

    text-align: right !important;
    white-space: normal !important;
}

/* availability subtitle */
.season-availability-label,
.availability-title,
.season-card-content .availability-title {
    display: block !important;
    width: 100% !important;

    margin: 0 0 10px !important;
    padding: 0 !important;

    color: #006b45 !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;

    text-align: right !important;
    white-space: nowrap !important;
}

/* months row */
.season-months {
    width: 100% !important;

    margin: 0 0 18px !important;
    padding: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(8, minmax(32px, 1fr)) !important;

    gap: 7px !important;

    align-items: end !important;

    direction: rtl !important;

    overflow: visible !important;
}

.season-month {
    width: 100% !important;
    min-width: 32px !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: flex-end !important;

    gap: 7px !important;

    text-align: center !important;
}

.season-month span,
.season-month-name {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #5f6863 !important;

    font-size: 12px !important;
    font-weight: 500 !important;
    line-height: 1 !important;

    text-align: center !important;

    white-space: nowrap !important;
}

.season-dot {
    display: block !important;

    width: 16px !important;
    height: 16px !important;

    min-width: 16px !important;
    min-height: 16px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    border-radius: 50% !important;

    border: 1px solid #d7dfda !important;

    background: #eef2ef !important;

    box-sizing: border-box !important;
}

.season-dot.active {
    background: #08764e !important;
    border-color: #08764e !important;
}

/* sugar info */
.season-sugar {
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: flex-start !important;

    color: #4d5852 !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;

    text-align: right !important;
}

.season-sugar strong {
    display: block !important;

    margin-top: 4px !important;

    color: #006b45 !important;

    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;

    direction: ltr !important;

    text-align: right !important;
}

/* details button */
.season-details-btn {
    margin-top: auto !important;

    align-self: flex-start !important;

    min-width: 125px !important;
    min-height: 44px !important;

    padding: 0 16px !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}

/* make sure content children stay above slider visuals */
.season-card-content,
.season-card-content * {
    z-index: 5 !important;
}

/* laptop */
@media (max-width: 1200px) {
    .season-card-content {
        width: 56% !important;
        min-width: 290px !important;
    }

    .season-months {
        gap: 5px !important;
    }

    .season-month span,
    .season-month-name {
        font-size: 11px !important;
    }
}

/* mobile / narrow cards */
@media (max-width: 750px) {
    .season-card {
        min-height: auto !important;
    }

    .season-card-content {
        width: 100% !important;
        min-width: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }

    .season-months {
        grid-template-columns: repeat(8, 1fr) !important;
    }

    .season-month span,
    .season-month-name {
        font-size: 10px !important;
    }
}



/* =========================================================
   SEASON SECTION — FINAL REPAIR
   Correct selectors for the actual HTML:
   .season-product-image / .season-availability-title /
   .season-month i / .season-month.available i
========================================================= */

.season-section {
    width: 100% !important;
    padding: 100px 0 70px !important;
    background: #ffffff !important;
}

.season-container {
    width: min(1440px, calc(100% - 80px)) !important;
    margin: 0 auto !important;
}

.season-section-header {
    position: relative !important;
    width: 100% !important;
    display: flex !important;
    align-items: flex-start !important;
    justify-content: center !important;
    margin-bottom: 36px !important;
}

.season-section-heading {
    text-align: center !important;
}

.season-section-heading h2 {
    margin: 0 !important;
    color: #181d1a !important;
    font-size: 34px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.season-section-heading p {
    margin-top: 8px !important;
    color: #68706c !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 1.7 !important;
}

.season-all-btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    min-height: 46px !important;
    padding: 0 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(0,87,56,.23) !important;
    border-radius: 9px !important;
    background: #fff !important;
    color: #005738 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
}

.season-slider {
    position: relative !important;
    width: 100% !important;
}

.season-track {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    direction: rtl !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scrollbar-width: none !important;
}

.season-track::-webkit-scrollbar {
    display: none !important;
}

/* CARD */
.season-card {
    position: relative !important;
    min-width: 0 !important;
    width: 100% !important;
    height: 310px !important;
    min-height: 310px !important;
    padding: 0 !important;

    display: grid !important;
    grid-template-columns: 38% 62% !important;

    overflow: hidden !important;

    background: #fff !important;
    border: 1px solid #e2e7e4 !important;
    border-radius: 14px !important;

    direction: ltr !important;
}

/* LEFT IMAGE: untouched structurally, only keep its own area */
.season-product-image {
    position: relative !important;
    width: 100% !important;
    height: 100% !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 28px 8px 18px !important;

    overflow: visible !important;
    background: transparent !important;
}

.season-product-image img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;

    max-width: 230px !important;
    max-height: 230px !important;

    margin: auto !important;

    object-fit: contain !important;
    object-position: center !important;

    background: transparent !important;
}

/* RIGHT CONTENT */
.season-card-content {
    position: relative !important;
    z-index: 3 !important;

    width: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 22px 22px 18px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;

    direction: rtl !important;
    text-align: right !important;

    overflow: visible !important;
}

.season-card-content h3 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;

    color: #151a17 !important;

    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;

    text-align: right !important;
}

/* availability */
.season-availability-title {
    display: block !important;
    width: 100% !important;

    margin: 14px 0 0 !important;
    padding: 0 !important;

    color: #005738 !important;

    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;

    text-align: right !important;
}

/* MONTHS */
.season-months {
    width: 100% !important;

    margin: 10px 0 0 !important;
    padding: 0 !important;

    display: grid !important;
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    gap: 5px !important;

    direction: rtl !important;

    overflow: visible !important;
}

.season-month {
    min-width: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 6px !important;

    text-align: center !important;
}

.season-month span {
    display: block !important;
    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    color: #66706a !important;

    font-size: 10px !important;
    font-weight: 500 !important;
    line-height: 1 !important;

    white-space: nowrap !important;
    text-align: center !important;
}

.season-month i {
    display: block !important;

    width: 16px !important;
    height: 16px !important;

    min-width: 16px !important;
    min-height: 16px !important;

    margin: 0 auto !important;
    padding: 0 !important;

    border: 1px solid #d6dcd8 !important;
    border-radius: 50% !important;

    background: #edf0ee !important;

    box-sizing: border-box !important;
}

.season-month.available i {
    border-color: #005738 !important;
    background: linear-gradient(145deg, #16855a, #005738) !important;
    box-shadow: inset 0 0 0 2px rgba(255,255,255,.14) !important;
}

/* SUGAR */
.season-sugar {
    width: 100% !important;

    margin: 18px 0 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;

    text-align: right !important;
}

.season-sugar span {
    color: #515a55 !important;

    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.season-sugar strong {
    display: block !important;

    margin-top: 4px !important;

    color: #005738 !important;

    font-size: 22px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;

    direction: ltr !important;
    unicode-bidi: isolate !important;
}

/* BUTTON */
.season-details-btn {
    align-self: flex-start !important;

    min-width: 130px !important;
    min-height: 44px !important;

    margin-top: auto !important;
    padding: 0 16px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid rgba(0,87,56,.18) !important;
    border-radius: 8px !important;

    background: #f2f6f3 !important;
    color: #005738 !important;

    font-size: 16px !important;
    font-weight: 700 !important;
}

/* ARROWS */
.season-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 20 !important;

    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    min-height: 48px !important;

    transform: translateY(-50%) !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    border: 1px solid #e0e7e3 !important;
    border-radius: 50% !important;

    background: #fff !important;
    color: #006643 !important;
}

.season-arrow svg {
    width: 24px !important;
    height: 24px !important;
}

.season-arrow-right {
    right: -24px !important;
}

.season-arrow-left {
    left: -24px !important;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .season-container {
        width: min(1440px, calc(100% - 50px)) !important;
    }

    .season-track {
        grid-template-columns: repeat(3, minmax(420px, 1fr)) !important;
    }

    .season-card {
        grid-template-columns: 36% 64% !important;
    }

    .season-card-content {
        padding: 20px 18px 16px !important;
    }

    .season-month span {
        font-size: 9px !important;
    }
}

@media (max-width: 900px) {
    .season-section-header {
        padding-top: 60px !important;
    }

    .season-all-btn {
        top: 0 !important;
        right: 50% !important;
        transform: translateX(50%) !important;
    }

    .season-track {
        grid-template-columns: repeat(3, minmax(430px, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .season-section {
        padding: 70px 0 50px !important;
    }

    .season-container {
        width: calc(100% - 28px) !important;
    }

    .season-section-heading h2 {
        font-size: 34px !important;
    }

    .season-track {
        display: flex !important;
        gap: 16px !important;
    }

    .season-card {
        min-width: 100% !important;
        height: auto !important;
        min-height: 540px !important;

        display: flex !important;
        flex-direction: column !important;
    }

    .season-product-image {
        width: 100% !important;
        height: 210px !important;
        padding: 20px !important;
    }

    .season-product-image img {
        max-width: 230px !important;
        max-height: 190px !important;
    }

    .season-card-content {
        width: 100% !important;
        padding: 20px !important;
    }

    .season-month span {
        font-size: 9px !important;
    }

    .season-arrow-right {
        right: -12px !important;
    }

    .season-arrow-left {
        left: -12px !important;
    }
}



/* =========================================================
   PROJECT-WIDE RHYTHM + SECTION TITLES + CALORIES
   Unified visual system requested for AL ASL
========================================================= */

:root {
    --asl-section-space: 120px;
    --asl-title-content-gap: 48px;
    --asl-deep-green: #063f2b;
    --asl-lime: #9bc52c;
    --asl-muted: #6f7973;
}

/* Major section vertical rhythm — desktop */
.products-showcase,
.season-section,
.why-stats-section,
.featured-section,
.about-company-section,
.about-why-section,
.about-cert-modern,
.about-cta-modern,
.products-catalog-section {
    padding-top: var(--asl-section-space) !important;
    padding-bottom: var(--asl-section-space) !important;
}

/* One unified title system */
.section-heading-unified {
    width: 100%;
    max-width: 760px;
    margin-top: 0 !important;
    margin-bottom: var(--asl-title-content-gap) !important;
    text-align: right;
}

.section-heading-unified--center {
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center;
}

.section-heading-unified h2 {
    position: relative;
    margin: 0 !important;
    padding-bottom: 16px;
    color: var(--asl-deep-green) !important;
    font-family: inherit !important;
    font-size: clamp(30px, 3vw, 38px) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
}

.section-heading-unified h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    margin-top: 13px;
    border-radius: 999px;
    background: var(--asl-lime);
}

.section-heading-unified--center h2::after {
    margin-right: auto;
    margin-left: auto;
}

.section-heading-unified p {
    max-width: 680px;
    margin: 0 !important;
    color: var(--asl-muted) !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.9 !important;
}

.section-heading-unified--center p {
    margin-right: auto !important;
    margin-left: auto !important;
}

/* Keep exactly 48px between title area and section content */
.products-showcase .section-title,
.featured-section .featured-section-title,
.about-why-section .about-section-title,
.about-cert-modern .about-cert-modern__head,
.products-page-heading,
.product-group-heading,
.products-info-heading {
    margin-bottom: var(--asl-title-content-gap) !important;
}

.season-section-header {
    margin-bottom: var(--asl-title-content-gap) !important;
}

.season-section-heading.section-heading-unified {
    margin-bottom: 0 !important;
}

/* Product catalogue rhythm */
.products-filter-bar {
    margin-bottom: var(--asl-section-space) !important;
}

.product-group {
    margin-top: 0 !important;
    margin-bottom: var(--asl-section-space) !important;
}

.product-group:last-of-type {
    margin-bottom: 0 !important;
}

.products-info-heading {
    margin-top: var(--asl-section-space) !important;
}

.products-information-grid {
    margin-top: 0 !important;
}

.products-sales-cta {
    margin-top: var(--asl-section-space) !important;
}

/* Calories — shared visual language */
.product-calories,
.featured-product-calories {
    display: block;
    margin-top: 5px;
    color: #6c776f;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.mini-product .product-calories {
    text-align: center;
    font-size: 11px;
}

.season-calories {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #dfe7e2;
    color: #66736b;
    font-size: 13px;
}

.season-calories strong {
    color: var(--asl-deep-green);
    font-size: 13px;
    font-weight: 700;
}

.featured-product-calories {
    margin: 6px 0 12px;
    text-align: center;
}

.product-info-list li:last-child strong {
    color: #0c6946;
}

/* CTA titles use the same typographic hierarchy while keeping light contrast */
.products-sales-cta__content h2,
.about-cta-modern__content h2 {
    font-family: inherit !important;
    font-size: clamp(30px, 3vw, 38px) !important;
    font-weight: 800 !important;
    line-height: 1.3 !important;
}

/* Responsive rhythm: preserve hierarchy without excessive mobile whitespace */
@media (max-width: 768px) {
    :root {
        --asl-section-space: 72px;
        --asl-title-content-gap: 40px;
    }

    .section-heading-unified h2 {
        font-size: 29px !important;
    }

    .section-heading-unified p {
        font-size: 14px !important;
    }
}

/* Final rhythm correction: keep 120px between catalogue blocks, not 240px */
.product-group {
    margin-bottom: 0 !important;
}
.product-group + .product-group {
    margin-top: var(--asl-section-space) !important;
}

/* CTA section titles keep the same lime decoration while preserving white text */
.products-sales-cta__content h2::after,
.about-cta-modern__content h2::after {
    content: "";
    display: block;
    width: 50px;
    height: 4px;
    margin-top: 13px;
    border-radius: 999px;
    background: var(--asl-lime);
}


/* =========================================================
   FINAL SECTION HEADING CORRECTION
   - no title descriptions
   - all section titles centered
   - preserve 48px title-to-content gap
========================================================= */
.section-heading-unified {
    width: 100% !important;
    max-width: 760px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    margin-bottom: var(--asl-title-content-gap, 48px) !important;
    text-align: center !important;
}

.section-heading-unified h2 {
    width: 100%;
    text-align: center !important;
}

.section-heading-unified h2::after {
    margin-right: auto !important;
    margin-left: auto !important;
}

/* Defensive rule in case an old title description remains in cached markup */
.section-heading-unified > p {
    display: none !important;
}

/* Season title remains centered even with the side action button */
.season-section-heading.section-heading-unified {
    flex: 1 1 auto;
    max-width: 760px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
}

/* Product-detail subsection heading */
.pd-extra-section-heading {
    width: 100%;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 48px;
    text-align: center;
}

.pd-extra-section-heading > p {
    display: none !important;
}

/* =========================================================
   FINAL TWO VISUAL FIXES
   1) assets/logo.png is now the transparent logo artwork.
   2) Section title inside the dark Why/Stats block stays light.
========================================================= */
.why-stats-section .section-heading-unified h2,
.why-stats-section .why-alasl .section-heading-unified h2,
.why-stats-section .why-alasl h2 {
    color: #ffffff !important;
}

.why-stats-section .section-heading-unified h2::after {
    background: #a9cf2e !important;
}


/* =========================================================
   CONTACT PAGE
========================================================= */

.contact-page,
.contact-page * {
    box-sizing: border-box;
}


.contact-page {
    width: 100%;
    direction: rtl;
    background: #ffffff;
}


/* =========================================================
   SECTION
========================================================= */

.contact-section {
    width: 100%;
    padding: 120px 20px;
}


.contact-container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.contact-section-title {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 48px;

    text-align: center;
}


.contact-section-title h1 {
    position: relative;

    margin: 0;

    padding-bottom: 18px;

    color: #063f2b;

    font-size: 36px;
    font-weight: 800;

    line-height: 1.3;
}


.contact-section-title h1::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 48px;
    height: 4px;

    border-radius: 20px;

    background: #a6c82e;

    transform: translateX(-50%);
}


/* =========================================================
   CARDS GRID
========================================================= */

.contact-cards {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 20px;
}


/* =========================================================
   CARD
========================================================= */

.contact-card {
    position: relative;

    min-width: 0;

    padding: 28px;

    overflow: hidden;

    background:
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fbfdfb 100%
        );

    border: 1px solid #e0e8e3;

    border-radius: 20px;

    box-shadow:
        0 12px 35px
        rgba(7, 63, 43, 0.05);

    transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}


.contact-card::before {
    content: "";

    position: absolute;

    top: 0;
    right: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #a6c82e,
            #07603f
        );
}


.contact-card:hover {
    transform: translateY(-6px);

    border-color: #bed3c5;

    box-shadow:
        0 20px 45px
        rgba(7, 63, 43, 0.10);
}


/* =========================================================
   CARD TOP
========================================================= */

.contact-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 28px;
}


.contact-card-icon {
    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 16px;

    background: #edf6f1;

    color: #07603f;
}


.contact-card-icon svg {
    width: 25px;
    height: 25px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-card-number-index {
    color: #dce5df;

    font-size: 34px;
    font-weight: 800;

    direction: ltr;
}


/* =========================================================
   CARD CONTENT
========================================================= */

.contact-card-content {
    margin-bottom: 25px;
}


.contact-card-label {
    display: block;

    margin-bottom: 7px;

    color: #7b847e;

    font-size: 13px;
    font-weight: 500;
}


.contact-card-phone {
    display: block;

    color: #063f2b;

    font-size: 23px;
    font-weight: 800;

    letter-spacing: 0.3px;

    text-align: right;
}


/* =========================================================
   ACTIONS
========================================================= */

.contact-card-actions {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 10px;
}


.contact-action-btn {
    min-height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 16px;

    border-radius: 10px;

    text-decoration: none !important;

    font-family: inherit;

    font-size: 14px;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease;
}


.contact-action-btn:hover {
    transform: translateY(-2px);
}


.contact-action-btn svg {
    width: 18px;
    height: 18px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}


/* CALL */

.contact-call-btn {
    border: 1px solid #07603f;

    background: #07603f;

    color: #ffffff !important;
}


.contact-call-btn:hover {
    background: #064a33;

    border-color: #064a33;
}


/* WHATSAPP */

.contact-whatsapp-btn {
    border: 1px solid #dce8e0;

    background: #ffffff;

    color: #07603f !important;
}


.contact-whatsapp-btn:hover {
    background: #edf7f1;

    border-color: #bdd2c5;
}


/* =========================================================
   BOTTOM BOX
========================================================= */

.contact-bottom-box {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 28px;

    padding: 22px 26px;

    background: #064a33;

    border-radius: 16px;

    color: #ffffff;
}


.contact-bottom-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background:
        rgba(255, 255, 255, 0.10);

    color: #b5d32b;
}


.contact-bottom-icon svg {
    width: 23px;
    height: 23px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-bottom-box strong {
    display: block;

    margin-bottom: 4px;

    font-size: 16px;
    font-weight: 800;
}


.contact-bottom-box p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 13px;

    line-height: 1.8;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .contact-cards {
        grid-template-columns: 1fr;
    }


    .contact-card {
        max-width: 620px;

        width: 100%;

        margin: 0 auto;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .contact-section {
        padding:
            80px
            15px;
    }


    .contact-section-title h1 {
        font-size: 30px;
    }


    .contact-card {
        padding: 22px;

        border-radius: 17px;
    }


    .contact-card-phone {
        font-size: 20px;
    }


    .contact-card-actions {
        grid-template-columns: 1fr 1fr;
    }


    .contact-action-btn {
        min-height: 45px;

        font-size: 13px;
    }


    .contact-bottom-box {
        align-items: flex-start;

        padding: 18px;
    }

}

/* =========================================================
   CONTACT LOCATION
========================================================= */

.contact-location-box {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 18px;

    margin-top: 28px;
    padding: 24px 28px;

    background: #ffffff;

    border: 1px solid #dfe8e3;
    border-radius: 18px;

    box-shadow:
        0 10px 30px
        rgba(7, 63, 43, 0.05);
}


.contact-location-icon {
    width: 58px;
    height: 58px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #edf6f1;

    border-radius: 16px;

    color: #07603f;
}


.contact-location-icon svg {
    width: 27px;
    height: 27px;

    fill: none;

    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}


.contact-location-content {
    text-align: right;
}


.contact-location-label {
    display: block;

    margin-bottom: 5px;

    color: #7a857f;

    font-size: 13px;
    font-weight: 500;
}


.contact-location-content h3 {
    margin: 0 0 5px;

    color: #064a33;

    font-size: 19px;
    font-weight: 800;
}


.contact-location-content p {
    margin: 0;

    color: #555f59;

    font-size: 15px;
    font-weight: 500;
}


/* MOBILE */

@media (max-width: 600px) {

    .contact-location-box {
        padding: 20px;
        gap: 14px;
    }

    .contact-location-icon {
        width: 50px;
        height: 50px;
    }

    .contact-location-content h3 {
        font-size: 17px;
    }

}

.season-details-btn {
    margin-top: 24px !important;
}

/* ===== FIX SEASON CARD BUTTON SPACING ===== */

.season-card-content {
    padding:
        12px
        22px
        30px !important;
}

.season-details-btn {
    margin-top: 16px !important;
}

.season-details-btn {
    background: var(--green) !important;
    color: #ffffff !important;
    border-color: var(--green) !important;
}

.featured-card {
    transition: none !important;
}

.featured-card:hover {
    transform: none !important;
    border-color: #ebefec !important;
    box-shadow:
        0 5px 16px
        rgba(0, 60, 35, 0.035) !important;
}

/* =====================================================
   ABOUT CTA BUTTONS - FINAL STYLE
===================================================== */

/* الشكل العام للزرارين */
.about-cta-modern__btn {
    min-width: 150px !important;
    min-height: 46px !important;

    padding: 0 22px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    border-radius: 9px !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    box-shadow: none !important;
}


/* الأيقونات */
.about-cta-modern__btn svg {
    width: 18px !important;
    height: 18px !important;

    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;

    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* =====================================================
   اطلب عرض سعر
   أبيض + كلام وأيقونة أخضر
===================================================== */

.about-cta-modern__btn--primary {
    background: #ffffff !important;

    color: var(--green) !important;

    border: 1px solid #ffffff !important;
}


/* HOVER */
.about-cta-modern__btn--primary:hover {
    background: #ffffff !important;

    color: var(--green) !important;

    border-color: #ffffff !important;

    transform: none !important;
    box-shadow: none !important;
}


/* =====================================================
   تواصل معنا
   بدون Fill + Stroke أبيض
===================================================== */

.about-cta-modern__btn--secondary {
    background: transparent !important;

    color: #ffffff !important;

    border: 1px solid #ffffff !important;
}


/* HOVER */
.about-cta-modern__btn--secondary:hover {
    background: transparent !important;

    color: #ffffff !important;

    border-color: #ffffff !important;

    transform: none !important;
    box-shadow: none !important;
}

/* =====================================================
   PRODUCTS SALES CTA BUTTONS
   نفس تصميم أزرار جاهزون للتعاون معك
===================================================== */

.products-sales-cta__btn {
    min-width: 150px !important;
    min-height: 46px !important;

    padding: 0 22px !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    gap: 9px !important;

    border-radius: 9px !important;

    font-size: 16px !important;
    font-weight: 700 !important;

    text-decoration: none !important;

    box-shadow: none !important;
}


/* الأيقونات */
.products-sales-cta__btn svg {
    width: 18px !important;
    height: 18px !important;

    fill: none !important;
    stroke: currentColor !important;

    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
}


/* =====================================================
   طلب عرض سعر
   WHITE FILL + GREEN TEXT
===================================================== */

.products-sales-cta__btn--primary {
    background: #ffffff !important;
    color: var(--green) !important;

    border: 1px solid #ffffff !important;
}

.products-sales-cta__btn--primary:hover {
    background: #ffffff !important;
    color: var(--green) !important;

    border-color: #ffffff !important;

    transform: none !important;
    box-shadow: none !important;
}


/* =====================================================
   تواصل معنا الآن
   TRANSPARENT + WHITE STROKE
===================================================== */

.products-sales-cta__btn--secondary {
    background: transparent !important;
    color: #ffffff !important;

    border: 1px solid #ffffff !important;
}

.products-sales-cta__btn--secondary:hover {
    background: transparent !important;
    color: #ffffff !important;

    border-color: #ffffff !important;

    transform: none !important;
    box-shadow: none !important;
}

.export-icon {
    font-size: 30px !important;
    font-weight: 500 !important;
}

.export-icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
    line-height: 1 !important;

    font-size: 30px !important;
    font-weight: 500 !important;
}

.export-features > div {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    text-align: center !important;
}

/* ===== Migrated inline styles: products #1 ===== */
/* =========================================================
           PRODUCTS SALES CTA - ISOLATED FROM OLD PROJECT CLASSES
        ========================================================= */
        .products-sales-cta,
        .products-sales-cta * {
            box-sizing: border-box;
        }

        .products-sales-cta {
            width: 100%;
            margin-top: 42px;
        }

        .products-sales-cta__box {
            position: relative;
            display: grid;
            grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
            width: 100%;
            min-height: 320px;
            overflow: hidden;
            border-radius: 24px;
            background: linear-gradient(135deg, #064a33 0%, #07603f 100%);
            box-shadow: 0 18px 45px rgba(9, 70, 43, 0.12);
        }

        .products-sales-cta__content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            min-width: 0;
            padding: 48px 54px;
            color: #fff;
            text-align: right;
        }

        .products-sales-cta__content::before {
            content: "";
            position: absolute;
            left: -90px;
            bottom: -100px;
            width: 230px;
            height: 230px;
            border-radius: 50%;
            border: 1px solid rgba(255,255,255,.08);
            pointer-events: none;
        }

        .products-sales-cta__label {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
            padding: 7px 14px;
            border: 1px solid rgba(255,255,255,.12);
            border-radius: 999px;
            background: rgba(255,255,255,.10);
            color: #b5d32b;
            font-size: 12px;
            font-weight: 700;
        }

        .products-sales-cta__content h2 {
            max-width: 650px;
            margin: 0 0 14px;
            color: #fff;
            font-size: 34px;
            font-weight: 800;
            line-height: 1.4;
        }

        .products-sales-cta__content p {
            max-width: 620px;
            margin: 0 0 26px;
            color: rgba(255,255,255,.86);
            font-size: 15px;
            line-height: 1.9;
        }

        .products-sales-cta__actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }

        .products-sales-cta__btn {
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 11px 20px;
            border-radius: 11px;
            text-decoration: none !important;
            font-size: 14px;
            font-weight: 700;
            transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .products-sales-cta__btn svg {
            flex: 0 0 auto;
        }

        .products-sales-cta__btn:hover {
            transform: translateY(-2px);
        }

        .products-sales-cta__btn--primary {
            border: 1px solid #a6c82e;
            background: #a6c82e;
            color: #073d2a !important;
        }

        .products-sales-cta__btn--primary:hover {
            border-color: #b4d83b;
            background: #b4d83b;
            box-shadow: 0 8px 20px rgba(166,200,46,.22);
        }

        .products-sales-cta__btn--secondary {
            border: 1px solid rgba(255,255,255,.35);
            background: rgba(255,255,255,.08);
            color: #fff !important;
        }

        .products-sales-cta__btn--secondary:hover {
            border-color: rgba(255,255,255,.55);
            background: rgba(255,255,255,.14);
        }

        .products-sales-cta__media {
            position: relative;
            min-width: 0;
            min-height: 320px;
            overflow: hidden;
        }

        .products-sales-cta__media img {
            position: absolute;
            inset: 0;
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center bottom;
            padding: 18px 18px 0;
        }

        .products-sales-cta__media::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                to left,
                rgba(6,74,51,0) 20%,
                rgba(6,74,51,.16) 58%,
                rgba(6,74,51,.58) 100%
            );
            pointer-events: none;
        }

        @media (max-width: 992px) {
            .products-sales-cta__box {
                grid-template-columns: minmax(0, 1fr) 300px;
                min-height: 295px;
            }

            .products-sales-cta__content {
                padding: 38px 32px;
            }

            .products-sales-cta__content h2 {
                font-size: 29px;
            }

            .products-sales-cta__media {
                min-height: 295px;
            }
        }

        @media (max-width: 768px) {
            .products-sales-cta__box {
                display: flex;
                flex-direction: column;
                min-height: 0;
                border-radius: 20px;
            }

            .products-sales-cta__content {
                order: 1;
                align-items: center;
                padding: 32px 22px 28px;
                text-align: center;
            }

            .products-sales-cta__content h2 {
                font-size: 25px;
            }

            .products-sales-cta__content p {
                font-size: 14px;
            }

            .products-sales-cta__actions {
                width: 100%;
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 10px;
            }

            .products-sales-cta__btn {
                width: 100%;
                min-height: 44px;
                padding: 10px 12px;
                font-size: 13px;
            }

            .products-sales-cta__media {
                order: 2;
                min-height: 220px;
            }

            .products-sales-cta__media img {
                padding: 8px 12px 0;
            }

            .products-sales-cta__media::after {
                background: linear-gradient(
                    to bottom,
                    rgba(6,74,51,.58) 0%,
                    rgba(6,74,51,0) 45%
                );
            }
        }

        @media (max-width: 520px) {
            .products-sales-cta__actions {
                grid-template-columns: 1fr;
            }
        }


/* ===== Migrated inline styles: about #1 ===== */
/* =========================================================
   ABOUT PAGE — CERTIFICATES + CTA REDESIGN
   Scoped styles only for the two redesigned sections
========================================================= */
.about-cert-modern,
.about-cert-modern *,
.about-cta-modern,
.about-cta-modern * { box-sizing: border-box; }

.about-cert-modern {
    padding: 72px 20px 42px;
    background: #fff;
    direction: rtl;
}
.about-cert-modern__inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}
.about-cert-modern__head {
    max-width: 650px;
    margin: 0 auto 34px;
    text-align: center;
}
.about-cert-modern__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    margin-bottom: 10px;
    border-radius: 999px;
    background: #eef7f2;
    color: #0d6a45;
    font-size: 13px;
    font-weight: 700;
}
.about-cert-modern__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #9bc52c;
}
.about-cert-modern__head h2 {
    margin: 0 0 10px;
    color: #063f2b;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.3;
}
.about-cert-modern__head p {
    margin: 0;
    color: #6f7973;
    font-size: 15px;
    line-height: 1.9;
}
.about-cert-modern__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}
.about-cert-modern__card {
    position: relative;
    min-width: 0;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 26px 18px 22px;
    border: 1px solid #e2eae5;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfdfb 100%);
    text-align: center;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.about-cert-modern__card::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 44px;
    height: 3px;
    border-radius: 10px 10px 0 0;
    background: #9bc52c;
    transform: translateX(-50%);
}
.about-cert-modern__card:hover {
    transform: translateY(-5px);
    border-color: #bfd5c7;
    box-shadow: 0 16px 34px rgba(8, 74, 46, .09);
}
.about-cert-modern__logo {
    width: 100%;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.about-cert-modern__logo img {
    display: block;
    width: auto;
    height: auto;
    max-width: 128px;
    max-height: 68px;
    object-fit: contain;
}
.about-cert-modern__card h3 {
    margin: 0 0 6px;
    color: #103f2c;
    font-size: 16px;
    font-weight: 800;
    direction: ltr;
}
.about-cert-modern__card p {
    margin: 0;
    color: #6f7872;
    font-size: 13px;
    line-height: 1.75;
}

.about-cta-modern {
    width: 100%;
    padding: 26px 20px 76px;
    background: #fff;
}

.about-cta-modern__box {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
    width: min(1180px, 100%);
    min-height: 320px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, #064a33 0%, #07603f 100%);
    box-shadow: 0 18px 45px rgba(9, 70, 43, 0.12);
}

.about-cta-modern__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 0;
    padding: 48px 54px;
    color: #fff;
    text-align: right;
}

.about-cta-modern__content::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: -100px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
}

.about-cta-modern__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    padding: 7px 14px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 999px;
    background: rgba(255,255,255,.10);
    color: #b5d32b;
    font-size: 12px;
    font-weight: 700;
}

.about-cta-modern__tag::before {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 7px;
    border-radius: 50%;
    background: #a6c82e;
}

.about-cta-modern__content h2 {
    max-width: 650px;
    margin: 0 0 14px;
    color: #fff;
    font-size: 34px;
    font-weight: 800;
    line-height: 1.4;
}

.about-cta-modern__content p {
    max-width: 620px;
    margin: 0 0 26px;
    color: rgba(255,255,255,.86);
    font-size: 15px;
    line-height: 1.9;
}

.about-cta-modern__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.about-cta-modern__btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 11px;
    text-decoration: none !important;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.about-cta-modern__btn svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.about-cta-modern__btn:hover {
    transform: translateY(-2px);
}

.about-cta-modern__btn--primary {
    border: 1px solid #a6c82e;
    background: #a6c82e;
    color: #073d2a !important;
}

.about-cta-modern__btn--primary:hover {
    border-color: #b4d83b;
    background: #b4d83b;
    box-shadow: 0 8px 20px rgba(166,200,46,.22);
}

.about-cta-modern__btn--secondary {
    border: 1px solid rgba(255,255,255,.35);
    background: rgba(255,255,255,.08);
    color: #fff !important;
}

.about-cta-modern__btn--secondary:hover {
    border-color: rgba(255,255,255,.55);
    background: rgba(255,255,255,.14);
}

.about-cta-modern__image {
    position: relative;
    min-width: 0;
    min-height: 320px;
    overflow: hidden;
}

.about-cta-modern__image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    padding: 18px 18px 0;
}

.about-cta-modern__image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(6,74,51,0) 20%,
        rgba(6,74,51,.16) 58%,
        rgba(6,74,51,.58) 100%
    );
    pointer-events: none;
}

@media (max-width: 992px) {
    .about-cert-modern__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .about-cta-modern__box {
        grid-template-columns: minmax(0, 1fr) 300px;
        min-height: 295px;
    }

    .about-cta-modern__content {
        padding: 38px 32px;
    }

    .about-cta-modern__content h2 {
        font-size: 29px;
    }

    .about-cta-modern__image {
        min-height: 295px;
    }
}

@media (max-width: 768px) {
    .about-cert-modern { padding: 50px 15px 28px; }
    .about-cert-modern__head { margin-bottom: 26px; }
    .about-cert-modern__grid { grid-template-columns: 1fr; gap: 12px; }
    .about-cert-modern__card {
        min-height: 0;
        display: grid;
        grid-template-columns: 82px 1fr;
        align-items: center;
        justify-items: start;
        gap: 15px;
        padding: 18px;
        text-align: right;
    }
    .about-cert-modern__logo {
        grid-row: 1 / span 2;
        width: 82px;
        height: 62px;
        margin: 0;
    }
    .about-cert-modern__logo img { max-width: 78px; max-height: 55px; }
    .about-cert-modern__card h3,
    .about-cert-modern__card p { text-align: right; }

    .about-cta-modern {
        padding: 20px 15px 55px;
    }

    .about-cta-modern__box {
        display: flex;
        flex-direction: column;
        min-height: 0;
        border-radius: 20px;
    }

    .about-cta-modern__content {
        order: 1;
        align-items: center;
        padding: 32px 22px 28px;
        text-align: center;
    }

    .about-cta-modern__content h2 {
        font-size: 25px;
    }

    .about-cta-modern__content p {
        font-size: 14px;
    }

    .about-cta-modern__actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-cta-modern__btn {
        width: 100%;
        min-height: 44px;
        padding: 10px 12px;
        font-size: 13px;
    }

    .about-cta-modern__image {
        order: 2;
        min-height: 220px;
    }

    .about-cta-modern__image img {
        padding: 8px 12px 0;
    }

    .about-cta-modern__image::after {
        background: linear-gradient(
            to bottom,
            rgba(6,74,51,.58) 0%,
            rgba(6,74,51,0) 45%
        );
    }
}

@media (max-width: 520px) {
    .about-cta-modern__actions {
        grid-template-columns: 1fr;
    }
}


/* ===== Migrated inline styles: contact #1 ===== */
/* Final WhatsApp brand-style icon */
.contact-whatsapp-btn {
    gap: 9px !important;
}

.contact-whatsapp-btn .whatsapp-brand-icon {
    width: 21px !important;
    height: 21px !important;
    flex: 0 0 21px;
    display: block;
    overflow: visible;
}

.contact-whatsapp-btn .whatsapp-bubble {
    fill: #0b7a53;
    stroke: none;
}

.contact-whatsapp-btn .whatsapp-phone {
    fill: #ffffff;
    stroke: none;
}


/* =====================================================
   SEASON PRODUCTS — REAL HORIZONTAL CAROUSEL
   3 visible on desktop, one-card movement per arrow click
===================================================== */
.season-track {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 22px !important;
    width: 100% !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    direction: rtl !important;
}

.season-track::-webkit-scrollbar {
    display: none !important;
}

.season-track .season-card {
    flex: 0 0 calc((100% - 44px) / 3) !important;
    width: calc((100% - 44px) / 3) !important;
    min-width: calc((100% - 44px) / 3) !important;
    max-width: calc((100% - 44px) / 3) !important;
    scroll-snap-align: start !important;
}

@media (max-width: 1000px) {
    .season-track .season-card {
        flex-basis: calc((100% - 22px) / 2) !important;
        width: calc((100% - 22px) / 2) !important;
        min-width: calc((100% - 22px) / 2) !important;
        max-width: calc((100% - 22px) / 2) !important;
    }
}

@media (max-width: 600px) {
    .season-track .season-card {
        flex-basis: 100% !important;
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

/* =====================================================
   SEASON CAROUSEL — INFINITE LOOP FINAL OVERRIDE
   Keeps all products in one continuous carousel.
===================================================== */
.season-track {
    overflow-x: hidden !important;
    overflow-y: hidden !important;
    scroll-behavior: auto !important;
    scroll-snap-type: none !important;
    overscroll-behavior-x: none !important;
}

.season-track .season-card {
    scroll-snap-align: none !important;
    transition: transform 420ms cubic-bezier(.22,.61,.36,1) !important;
    will-change: transform;
}

.season-track.season-no-transition .season-card {
    transition: none !important;
}

.season-arrow {
    touch-action: manipulation;
}

/* ================================
   MOBILE LANGUAGE MENU FIX
================================ */

@media (max-width: 768px) {

    .language-switcher .language-menu {
        left: auto !important;
        right: 0 !important;
        width: 225px !important;
        max-width: calc(100vw - 28px) !important;
    }

}

/* =====================================================
   STEP 7B - FEATURED PRODUCTS: ONE-ROW INFINITE CAROUSEL
   Keep every featured product on one horizontal row.
===================================================== */
.featured-track {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow: hidden !important;
    gap: 18px !important;
}

.featured-card {
    flex: 0 0 calc((100% - 90px) / 6) !important;
    width: calc((100% - 90px) / 6) !important;
    min-width: 0 !important;
    transition:
        transform 0.42s ease,
        box-shadow 0.22s ease,
        border-color 0.22s ease !important;
}

.featured-track.featured-no-transition .featured-card {
    transition: none !important;
}

@media (max-width: 1200px) {
    .featured-card {
        flex-basis: 180px !important;
        width: 180px !important;
        min-width: 180px !important;
    }
}

@media (max-width: 900px) {
    .featured-card {
        flex-basis: 200px !important;
        width: 200px !important;
        min-width: 200px !important;
    }
}

@media (max-width: 600px) {
    .featured-track {
        gap: 13px !important;
        overflow-x: auto !important;
        scroll-snap-type: x proximity;
    }

    .featured-card {
        flex-basis: 175px !important;
        width: 175px !important;
        min-width: 175px !important;
        scroll-snap-align: start;
    }
}

/* =========================================================
   STEP 30 — MULTILINGUAL DIRECTION FOUNDATION
   ========================================================= */
html[dir="ltr"] body {
    direction: ltr;
}

html[dir="ltr"] .navbar {
    direction: ltr;
}

html[dir="ltr"] .search-box input {
    text-align: left;
}

html[dir="ltr"] .language-menu {
    right: auto;
    left: 0;
}

html[dir="ltr"] .language-option {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .site-logo {
    justify-content: flex-start;
}

html[dir="ltr"] .hero-content {
    margin-right: 0;
    margin-left: auto;
    text-align: left;
}

html[dir="ltr"] .hero-actions {
    direction: ltr;
}

html[dir="ltr"] .hero-description {
    text-align: left;
}

/* =========================================================
   STEP 30B — MIRROR HERO LAYOUT FOR LTR LANGUAGES
   EN / RU / PT:
   image on the LEFT, empty fade/content area on the RIGHT.
   The image itself is NOT horizontally flipped.
   ========================================================= */
html[dir="ltr"] .hero-visual {
    left: 0;
    right: auto;

    background-position: left center;

    -webkit-mask-image:
        linear-gradient(
            to right,
            #000 0%,
            #000 45%,
            rgba(0, 0, 0, 0.95) 55%,
            rgba(0, 0, 0, 0.72) 66%,
            rgba(0, 0, 0, 0.38) 77%,
            rgba(0, 0, 0, 0.1) 87%,
            transparent 97%
        );

    mask-image:
        linear-gradient(
            to right,
            #000 0%,
            #000 45%,
            rgba(0, 0, 0, 0.95) 55%,
            rgba(0, 0, 0, 0.72) 66%,
            rgba(0, 0, 0, 0.38) 77%,
            rgba(0, 0, 0, 0.1) 87%,
            transparent 97%
        );
}

html[dir="ltr"] .hero-visual::after {
    background:
        linear-gradient(
            270deg,
            var(--hero-bg) 0%,
            rgba(250, 248, 241, 0.82) 14%,
            rgba(250, 248, 241, 0.2) 38%,
            transparent 65%
        );
}

html[dir="ltr"] .hero-container {
    direction: ltr;
}

html[dir="ltr"] .hero-content {
    margin-left: auto;
    margin-right: 0;
    text-align: left;
}

html[dir="ltr"] .fresh-badge {
    left: 39%;
    right: auto;
}

/* On tablet/mobile the hero already becomes a soft full-width visual,
   so keep the content centered there instead of forcing desktop alignment. */
@media (max-width: 900px) {
    html[dir="ltr"] .hero-content {
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    html[dir="ltr"] .hero-description {
        text-align: center;
    }
}

/* =========================================================
   STEP 31 — COMPLETE RTL / LTR MIRRORING
   Arabic remains RTL. English / Russian / Portuguese are LTR.
   ========================================================= */
html[dir="ltr"] body { direction:ltr; text-align:left; }
html[dir="ltr"] .navbar { direction:ltr !important; }
html[dir="ltr"] .site-logo { order:1; justify-content:flex-start !important; margin-right:0 !important; }
html[dir="ltr"] .navigation { order:2; }
html[dir="ltr"] .language-switcher { order:3; }
html[dir="ltr"] .search-box { order:4; }
html[dir="ltr"] .mobile-menu-btn { order:5; }
html[dir="ltr"] .nav-list { direction:ltr; }
html[dir="ltr"] .nav-link { direction:ltr; }
html[dir="ltr"] .search-box input { direction:ltr; text-align:left; }
html[dir="ltr"] .language-menu { left:auto !important; right:0 !important; }
html[dir="ltr"] .language-option { direction:ltr; text-align:left; }

/* Hero: hard mirror of the full visual composition, not the image pixels. */
.home-hero.home-hero--ltr .hero-visual {
    left:0 !important; right:auto !important; width:75% !important;
    background-position:left center !important;
    -webkit-mask-image:linear-gradient(to right,#000 0%,#000 45%,rgba(0,0,0,.95) 55%,rgba(0,0,0,.72) 66%,rgba(0,0,0,.38) 77%,rgba(0,0,0,.1) 87%,transparent 97%) !important;
    mask-image:linear-gradient(to right,#000 0%,#000 45%,rgba(0,0,0,.95) 55%,rgba(0,0,0,.72) 66%,rgba(0,0,0,.38) 77%,rgba(0,0,0,.1) 87%,transparent 97%) !important;
}
.home-hero.home-hero--ltr .hero-container { direction:ltr !important; justify-content:flex-end !important; }
.home-hero.home-hero--ltr .hero-content { width:48%; max-width:580px; margin:0 !important; text-align:left !important; }
.home-hero.home-hero--ltr .hero-eyebrow { justify-content:flex-start; direction:ltr; }
.home-hero.home-hero--ltr .hero-description { text-align:left !important; margin-left:0; margin-right:0; }
.home-hero.home-hero--ltr .hero-actions { direction:ltr !important; justify-content:flex-start; }
.home-hero.home-hero--ltr .fresh-badge { left:39% !important; right:auto !important; }
html[dir="ltr"] .hero-features { direction:ltr; }
html[dir="ltr"] .hero-feature { direction:ltr; }
html[dir="ltr"] .feature-text { text-align:left; }

/* Home split cards mirror as complete blocks. */
html[dir="ltr"] .product-category-card { direction:rtl !important; }
html[dir="ltr"] .category-card-content { direction:ltr !important; text-align:left; }
html[dir="ltr"] .category-heading, html[dir="ltr"] .mini-product { text-align:left; }
html[dir="ltr"] .mini-product { direction:ltr; }
html[dir="ltr"] .season-card-content, html[dir="ltr"] .featured-card-content { direction:ltr; text-align:left; }

/* About */
html[dir="ltr"] .about-page { direction:ltr; }
html[dir="ltr"] .about-company-grid { direction:ltr !important; }
html[dir="ltr"] .about-company-content { text-align:left !important; }
html[dir="ltr"] .about-cta-modern__content { align-items:flex-start; text-align:left !important; direction:ltr; }
html[dir="ltr"] .about-cta-modern__actions { direction:ltr; }
html[dir="ltr"] .about-feature-card, html[dir="ltr"] .about-cert-modern__card { direction:ltr; }

/* Contact */
html[dir="ltr"] .contact-page { direction:ltr !important; }
html[dir="ltr"] .contact-card, html[dir="ltr"] .contact-location-box, html[dir="ltr"] .contact-bottom-box { direction:ltr; text-align:left; }
html[dir="ltr"] .contact-card-number, html[dir="ltr"] .contact-card-number-index, html[dir="ltr"] .contact-phone-number { direction:ltr; }
html[dir="ltr"] .contact-action-btn { direction:ltr; }

/* Products listing */
html[dir="ltr"] .products-page { direction:ltr; }
html[dir="ltr"] .products-filter-bar, html[dir="ltr"] .products-filter-buttons, html[dir="ltr"] .products-local-search { direction:ltr; }
html[dir="ltr"] .products-local-search input { text-align:left; }
html[dir="ltr"] .catalog-product-card { direction:rtl !important; }
html[dir="ltr"] .catalog-product-content { direction:ltr !important; text-align:left !important; }
html[dir="ltr"] .product-info-list { direction:ltr; }
html[dir="ltr"] .product-info-list li { direction:ltr; }
html[dir="ltr"] .comparison-panel, html[dir="ltr"] .export-quality-panel { direction:ltr; text-align:left; }
html[dir="ltr"] .products-sales-cta__content { direction:ltr; align-items:flex-start; text-align:left !important; }
html[dir="ltr"] .products-sales-cta__actions { direction:ltr; }

/* Footer */
html[dir="ltr"] .site-footer, html[dir="ltr"] .footer-main { direction:ltr; }
html[dir="ltr"] .footer-brand { direction:ltr !important; text-align:left !important; align-items:flex-start !important; }
html[dir="ltr"] .footer-column, html[dir="ltr"] .footer-links, html[dir="ltr"] .footer-contact-list, html[dir="ltr"] .footer-newsletter { direction:ltr; text-align:left; }
html[dir="ltr"] .footer-contact-item { direction:ltr; }
html[dir="ltr"] .newsletter-form input { direction:ltr; text-align:left; }

@media (max-width:900px) {
    .home-hero.home-hero--ltr .hero-visual { width:100% !important; opacity:.3; }
    .home-hero.home-hero--ltr .hero-container { justify-content:center !important; }
    .home-hero.home-hero--ltr .hero-content { width:100%; max-width:620px; margin:auto !important; text-align:center !important; }
    .home-hero.home-hero--ltr .hero-eyebrow, .home-hero.home-hero--ltr .hero-actions { justify-content:center; }
    .home-hero.home-hero--ltr .hero-description { text-align:center !important; margin-inline:auto; }
    html[dir="ltr"] .about-company-content, html[dir="ltr"] .about-cta-modern__content, html[dir="ltr"] .products-sales-cta__content { text-align:center !important; align-items:center; }
}

/* =========================================================
   STEP 31B — HERO LTR COMPOSITION FIX
   The source hero artwork has its empty copy-space baked on the left.
   On LTR languages we CROP that blank part instead of mirroring pixels:
   products stay readable on the left, copy-space is clean on the right.
   ========================================================= */
@media (min-width: 901px) {
    .home-hero.home-hero--ltr {
        min-height: 600px;
        background: var(--hero-bg);
    }

    .home-hero.home-hero--ltr .hero-visual {
        left: 0 !important;
        right: auto !important;
        width: 64% !important;

        /*
         * Zoom into the right side of the original artwork.
         * This removes most of the baked-in empty-left area and brings
         * the fruit/vegetables naturally to the left side of the section.
         */
        background-size: 145% auto !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;

        -webkit-mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 58%,
                rgba(0, 0, 0, .96) 66%,
                rgba(0, 0, 0, .72) 76%,
                rgba(0, 0, 0, .34) 87%,
                transparent 100%
            ) !important;

        mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 58%,
                rgba(0, 0, 0, .96) 66%,
                rgba(0, 0, 0, .72) 76%,
                rgba(0, 0, 0, .34) 87%,
                transparent 100%
            ) !important;
    }

    .home-hero.home-hero--ltr .hero-visual::after {
        background:
            linear-gradient(
                to right,
                transparent 0%,
                transparent 58%,
                rgba(250, 248, 241, .14) 72%,
                rgba(250, 248, 241, .72) 88%,
                var(--hero-bg) 100%
            ) !important;
    }

    .home-hero.home-hero--ltr .hero-container {
        width: min(1440px, calc(100% - 80px));
        min-height: 500px;
        direction: ltr !important;
        justify-content: flex-end !important;
    }

    .home-hero.home-hero--ltr .hero-content {
        width: 43% !important;
        max-width: 610px !important;
        margin: 0 !important;
        padding: 55px 0 120px !important;
        position: relative;
        z-index: 8;
        text-align: left !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow {
        justify-content: flex-start !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .hero-description {
        max-width: 580px;
        text-align: left !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .home-hero.home-hero--ltr .hero-actions {
        direction: ltr !important;
        justify-content: flex-start !important;
        flex-wrap: wrap;
    }

    /* The primary arrow should follow LTR reading direction. */
    .home-hero.home-hero--ltr .hero-btn-primary svg {
        transform: rotate(180deg);
    }

    /*
     * Badge sits around the visual/content boundary without colliding
     * with the eyebrow/title.
     */
    .home-hero.home-hero--ltr .fresh-badge {
        left: 43% !important;
        right: auto !important;
        top: 46px !important;
        z-index: 9;
    }

    /*
     * Arabic has the feature strip on the left under its copy-space.
     * Mirror that layout correctly for LTR: strip moves to the RIGHT.
     */
    .home-hero.home-hero--ltr .hero-features-wrapper {
        left: auto !important;
        right: 0 !important;
        width: 61% !important;
        padding: 0 3.5% 30px !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .hero-feature {
        direction: ltr !important;
        justify-content: flex-start;
    }

    .home-hero.home-hero--ltr .feature-text {
        text-align: left !important;
    }
}

/* Long Russian/Portuguese headings need a little more breathing room. */
html[lang="ru"] .home-hero.home-hero--ltr .hero-title,
html[lang="pt"] .home-hero.home-hero--ltr .hero-title {
    font-size: clamp(44px, 3.6vw, 62px);
}

html[lang="ru"] .home-hero.home-hero--ltr .hero-title span,
html[lang="pt"] .home-hero.home-hero--ltr .hero-title span {
    font-size: clamp(36px, 3.05vw, 52px);
}

/* Tablet/mobile: use a soft full-width visual and centered copy. */
@media (max-width: 900px) {
    .home-hero.home-hero--ltr .hero-visual {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        background-size: cover !important;
        background-position: center !important;
        opacity: .25;
        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .home-hero.home-hero--ltr .hero-visual::after {
        background: rgba(250, 248, 241, .5) !important;
    }

    .home-hero.home-hero--ltr .hero-features-wrapper {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
}

/* =========================================================
   STEP 31D — FINAL LTR HERO POLISH
   Cleaner mirrored composition for EN / RU / PT.
   ========================================================= */
@media (min-width: 901px) {

    .home-hero.home-hero--ltr {
        min-height: 660px !important;
        background: var(--hero-bg) !important;
        overflow: hidden;
    }

    /*
     * Use only the subject-heavy/right side of the original artwork.
     * It stays on the LEFT without mirroring the actual pixels.
     */
    .home-hero.home-hero--ltr .hero-visual {
        left: 0 !important;
        right: auto !important;
        top: 0 !important;
        bottom: 0 !important;

        width: 62% !important;

        background-size: auto 100% !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;

        -webkit-mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 68%,
                rgba(0, 0, 0, .96) 73%,
                rgba(0, 0, 0, .78) 79%,
                rgba(0, 0, 0, .50) 86%,
                rgba(0, 0, 0, .20) 93%,
                transparent 100%
            ) !important;

        mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 68%,
                rgba(0, 0, 0, .96) 73%,
                rgba(0, 0, 0, .78) 79%,
                rgba(0, 0, 0, .50) 86%,
                rgba(0, 0, 0, .20) 93%,
                transparent 100%
            ) !important;
    }

    .home-hero.home-hero--ltr .hero-visual::after {
        content: "";
        position: absolute;
        inset: 0;
        background:
            linear-gradient(
                to right,
                transparent 0%,
                transparent 70%,
                rgba(250, 248, 241, .08) 78%,
                rgba(250, 248, 241, .40) 89%,
                var(--hero-bg) 100%
            ) !important;
        pointer-events: none;
    }

    .home-hero.home-hero--ltr .hero-container {
        width: min(1440px, calc(100% - 96px)) !important;
        min-height: 565px !important;
        margin: 0 auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        direction: ltr !important;
    }

    /*
     * Keep all copy fully inside the clean right-hand area.
     */
    .home-hero.home-hero--ltr .hero-content {
        width: 42% !important;
        max-width: 610px !important;

        margin: 0 !important;
        padding: 54px 0 132px !important;

        position: relative;
        z-index: 10;

        text-align: left !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow {
        justify-content: flex-start !important;
        direction: ltr !important;
        margin-bottom: 20px;
    }

    .home-hero.home-hero--ltr .hero-title {
        max-width: 610px;
        margin-bottom: 24px;
        line-height: 1.08;
    }

    .home-hero.home-hero--ltr .hero-description {
        max-width: 590px !important;
        margin: 0 0 28px 0 !important;

        text-align: left !important;
        line-height: 1.85;
    }

    .home-hero.home-hero--ltr .hero-actions {
        direction: ltr !important;
        justify-content: flex-start !important;
        align-items: center;
        gap: 16px !important;
        flex-wrap: wrap;
    }

    .home-hero.home-hero--ltr .hero-btn {
        min-height: 58px;
    }

    /*
     * Badge sits in the transition area, not on top of the headline.
     */
    .home-hero.home-hero--ltr .fresh-badge {
        top: 54px !important;
        left: 46.5% !important;
        right: auto !important;

        width: 104px !important;
        height: 104px !important;

        z-index: 11;
    }

    /*
     * Features belong to the copy side only.
     * This removes the awkward overlap over the product photo.
     */
    .home-hero.home-hero--ltr .hero-features-wrapper {
        left: auto !important;
        right: max(48px, calc((100% - 1440px) / 2)) !important;
        bottom: 0 !important;

        width: min(760px, 44%) !important;
        padding: 0 0 30px !important;

        z-index: 12;
    }

    .home-hero.home-hero--ltr .hero-features {
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 18px !important;
        direction: ltr !important;
        align-items: start;
    }

    .home-hero.home-hero--ltr .hero-feature {
        min-width: 0;
        gap: 11px !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .feature-icon {
        flex: 0 0 auto;
    }

    .home-hero.home-hero--ltr .feature-text {
        min-width: 0;
        text-align: left !important;
    }

    .home-hero.home-hero--ltr .feature-text strong {
        line-height: 1.25;
    }

    .home-hero.home-hero--ltr .feature-text span {
        line-height: 1.35;
    }
}

/* Slightly tighter layout for medium desktop widths. */
@media (min-width: 901px) and (max-width: 1280px) {

    .home-hero.home-hero--ltr {
        min-height: 620px !important;
    }

    .home-hero.home-hero--ltr .hero-container {
        width: calc(100% - 56px) !important;
    }

    .home-hero.home-hero--ltr .hero-content {
        width: 44% !important;
        max-width: 540px !important;
    }

    .home-hero.home-hero--ltr .hero-title {
        font-size: clamp(42px, 4vw, 56px) !important;
    }

    .home-hero.home-hero--ltr .hero-title span {
        font-size: clamp(34px, 3.5vw, 48px) !important;
    }

    .home-hero.home-hero--ltr .fresh-badge {
        left: 45% !important;
        width: 94px !important;
        height: 94px !important;
    }

    .home-hero.home-hero--ltr .hero-features-wrapper {
        right: 28px !important;
        width: 47% !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        gap: 12px !important;
    }
}

/* Russian and Portuguese can have longer labels. */
@media (min-width: 901px) {
    html[lang="ru"] .home-hero.home-hero--ltr .hero-content,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-content {
        width: 44% !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .hero-title,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-title {
        font-size: clamp(42px, 3.25vw, 58px) !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .hero-title span,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-title span {
        font-size: clamp(34px, 2.8vw, 49px) !important;
    }
}

/* Mobile/tablet stays centered and readable. */
@media (max-width: 900px) {
    .home-hero.home-hero--ltr {
        min-height: auto !important;
    }

    .home-hero.home-hero--ltr .hero-content {
        width: 100% !important;
        max-width: 680px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow,
    .home-hero.home-hero--ltr .hero-actions {
        justify-content: center !important;
    }

    .home-hero.home-hero--ltr .hero-description,
    .home-hero.home-hero--ltr .feature-text {
        text-align: center !important;
    }
}

/* =========================================================
   STEP 31E — CLEAN LTR HERO COMPOSITION
   EN / RU / PT only
   - move visual further LEFT
   - remove the colored overlay from the left side
   - organize the right-side content more cleanly
   ========================================================= */
@media (min-width: 901px) {

    .home-hero.home-hero--ltr {
        min-height: 690px !important;
        background: var(--hero-bg) !important;
        overflow: hidden !important;
    }

    /*
     * Crop more aggressively into the original image so the products
     * start much closer to the LEFT edge instead of leaving a large
     * pale landscape area there.
     */
    .home-hero.home-hero--ltr .hero-visual {
        left: -5% !important;
        right: auto !important;
        top: 0 !important;
        bottom: 0 !important;

        width: 66% !important;

        background-size: auto 122% !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;

        /*
         * Fade ONLY toward the content side (right).
         * No mask/gradient tint on the left edge.
         */
        -webkit-mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 76%,
                rgba(0, 0, 0, .96) 82%,
                rgba(0, 0, 0, .72) 89%,
                rgba(0, 0, 0, .28) 96%,
                transparent 100%
            ) !important;

        mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 76%,
                rgba(0, 0, 0, .96) 82%,
                rgba(0, 0, 0, .72) 89%,
                rgba(0, 0, 0, .28) 96%,
                transparent 100%
            ) !important;
    }

    /*
     * Remove the extra beige/white color layer that was visible over
     * the photo. The right-side transition is handled by the mask.
     */
    .home-hero.home-hero--ltr .hero-visual::after {
        background: none !important;
        display: none !important;
    }

    .home-hero.home-hero--ltr .hero-container {
        width: min(1460px, calc(100% - 96px)) !important;
        min-height: 560px !important;

        margin: 0 auto !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;

        direction: ltr !important;
    }

    /*
     * A clear, consistent copy column on the RIGHT.
     */
    .home-hero.home-hero--ltr .hero-content {
        width: 39% !important;
        max-width: 570px !important;

        margin: 0 !important;
        padding: 54px 0 220px !important;

        position: relative !important;
        z-index: 12 !important;

        text-align: left !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow {
        margin: 0 0 16px !important;
        justify-content: flex-start !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .hero-title {
        margin: 0 0 22px !important;
        max-width: 570px !important;

        line-height: 1.08 !important;
        letter-spacing: -0.7px !important;
    }

    .home-hero.home-hero--ltr .hero-title span {
        margin-top: 8px !important;
    }

    .home-hero.home-hero--ltr .hero-description {
        max-width: 550px !important;

        margin: 0 0 28px !important;

        text-align: left !important;
        line-height: 1.8 !important;
    }

    .home-hero.home-hero--ltr .hero-actions {
        display: flex !important;
        direction: ltr !important;

        justify-content: flex-start !important;
        align-items: center !important;

        gap: 14px !important;
        flex-wrap: wrap !important;
    }

    .home-hero.home-hero--ltr .hero-btn {
        min-height: 58px !important;
    }

    /*
     * Badge stays in the boundary zone, away from both image focal
     * points and the right-side heading.
     */
    .home-hero.home-hero--ltr .fresh-badge {
        top: 52px !important;
        left: 47% !important;
        right: auto !important;

        width: 102px !important;
        height: 102px !important;

        z-index: 13 !important;
    }

    /*
     * Put the four benefits in a neat 2×2 block under the right copy.
     * This is much cleaner than stretching all four across one long row.
     */
    .home-hero.home-hero--ltr .hero-features-wrapper {
        left: auto !important;
        right: max(48px, calc((100% - 1460px) / 2)) !important;
        bottom: 28px !important;

        width: min(620px, 40%) !important;

        padding: 0 !important;

        z-index: 14 !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;

        gap: 18px 28px !important;

        direction: ltr !important;
        align-items: start !important;
    }

    .home-hero.home-hero--ltr .hero-feature {
        min-width: 0 !important;

        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;

        gap: 12px !important;

        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .feature-icon {
        flex: 0 0 auto !important;
        margin-top: 1px !important;
    }

    .home-hero.home-hero--ltr .feature-icon svg {
        width: 38px !important;
        height: 38px !important;
    }

    .home-hero.home-hero--ltr .feature-text {
        min-width: 0 !important;

        text-align: left !important;

        gap: 3px !important;
    }

    .home-hero.home-hero--ltr .feature-text strong {
        white-space: normal !important;

        font-size: 16px !important;
        line-height: 1.28 !important;
    }

    .home-hero.home-hero--ltr .feature-text span {
        white-space: normal !important;

        font-size: 14px !important;
        line-height: 1.35 !important;
    }
}

/* Medium desktop tuning */
@media (min-width: 901px) and (max-width: 1320px) {

    .home-hero.home-hero--ltr .hero-visual {
        left: -7% !important;
        width: 69% !important;
        background-size: auto 126% !important;
    }

    .home-hero.home-hero--ltr .hero-container {
        width: calc(100% - 60px) !important;
    }

    .home-hero.home-hero--ltr .hero-content {
        width: 41% !important;
        max-width: 530px !important;
        padding-bottom: 215px !important;
    }

    .home-hero.home-hero--ltr .fresh-badge {
        left: 45.5% !important;
    }

    .home-hero.home-hero--ltr .hero-features-wrapper {
        right: 30px !important;
        width: 43% !important;
    }
}

/* Long translated headings */
@media (min-width: 901px) {

    html[lang="ru"] .home-hero.home-hero--ltr .hero-content,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-content {
        width: 41% !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .hero-title,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-title {
        font-size: clamp(40px, 3.15vw, 56px) !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .hero-title span,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-title span {
        font-size: clamp(33px, 2.75vw, 48px) !important;
    }
}

/* Keep tablet/mobile simple and readable. */
@media (max-width: 900px) {

    .home-hero.home-hero--ltr .hero-visual {
        left: 0 !important;
        width: 100% !important;

        background-size: cover !important;
        background-position: center !important;

        opacity: .24 !important;

        -webkit-mask-image: none !important;
        mask-image: none !important;
    }

    .home-hero.home-hero--ltr .hero-visual::after {
        display: none !important;
    }

    .home-hero.home-hero--ltr .hero-content {
        width: 100% !important;
        max-width: 680px !important;

        margin: 0 auto !important;
        padding-bottom: 250px !important;

        text-align: center !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow,
    .home-hero.home-hero--ltr .hero-actions {
        justify-content: center !important;
    }

    .home-hero.home-hero--ltr .hero-description {
        margin-left: auto !important;
        margin-right: auto !important;

        text-align: center !important;
    }

    .home-hero.home-hero--ltr .hero-features-wrapper {
        left: 0 !important;
        right: 0 !important;
        bottom: 22px !important;

        width: 100% !important;

        padding: 0 18px !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 14px !important;
    }
}

/* =========================================================
   STEP 31F — STRONGER LTR HERO REALIGNMENT
   Goal:
   - push image further LEFT
   - remove any faded/colored feel on the left
   - keep all right-side content in a cleaner, tighter column
   ========================================================= */
@media (min-width: 901px) {

    .home-hero.home-hero--ltr {
        min-height: 640px !important;
        background: var(--hero-bg) !important;
        overflow: hidden !important;
    }

    /*
     * Make the visual dominate the left half more clearly.
     * We crop harder into the source art and pull it left.
     */
    .home-hero.home-hero--ltr .hero-visual {
        left: -12% !important;
        right: auto !important;
        top: 0 !important;
        bottom: 0 !important;

        width: 74% !important;

        background-size: auto 132% !important;
        background-position: right center !important;
        background-repeat: no-repeat !important;

        -webkit-mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 82%,
                rgba(0, 0, 0, .88) 90%,
                rgba(0, 0, 0, .26) 97%,
                transparent 100%
            ) !important;

        mask-image:
            linear-gradient(
                to right,
                #000 0%,
                #000 82%,
                rgba(0, 0, 0, .88) 90%,
                rgba(0, 0, 0, .26) 97%,
                transparent 100%
            ) !important;

        opacity: 1 !important;
        filter: none !important;
    }

    /*
     * Remove all overlay tinting over the image.
     */
    .home-hero.home-hero--ltr .hero-visual::after {
        display: none !important;
        background: none !important;
    }

    .home-hero.home-hero--ltr .hero-container {
        width: min(1460px, calc(100% - 88px)) !important;
        min-height: 640px !important;
        margin: 0 auto !important;
        position: relative !important;
        direction: ltr !important;
    }

    /*
     * Build a compact, neat content column on the right.
     */
    .home-hero.home-hero--ltr .hero-content {
        width: 36.5% !important;
        max-width: 540px !important;

        margin-left: auto !important;
        margin-right: 0 !important;

        padding: 82px 0 0 !important;

        position: relative !important;
        z-index: 15 !important;

        text-align: left !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow {
        margin: 0 0 14px !important;
        justify-content: flex-start !important;
    }

    .home-hero.home-hero--ltr .hero-title {
        margin: 0 0 22px !important;
        line-height: 1.08 !important;
        max-width: 520px !important;
    }

    .home-hero.home-hero--ltr .hero-description {
        margin: 0 0 30px !important;
        max-width: 520px !important;
        text-align: left !important;
        line-height: 1.78 !important;
    }

    .home-hero.home-hero--ltr .hero-actions {
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 16px !important;
        direction: ltr !important;
        flex-wrap: wrap !important;
    }

    .home-hero.home-hero--ltr .hero-btn {
        min-height: 58px !important;
    }

    /*
     * Put the badge near the visual edge without hitting the text.
     */
    .home-hero.home-hero--ltr .fresh-badge {
        top: 56px !important;
        left: 45% !important;
        right: auto !important;
        z-index: 16 !important;
    }

    /*
     * Neater feature block under the text on the right.
     */
    .home-hero.home-hero--ltr .hero-features-wrapper {
        left: auto !important;
        right: 0 !important;
        bottom: 54px !important;

        width: 36.5% !important;
        max-width: 540px !important;

        padding: 0 !important;

        z-index: 15 !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 18px 24px !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .hero-feature {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 11px !important;
        min-width: 0 !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .feature-text {
        text-align: left !important;
    }

    .home-hero.home-hero--ltr .feature-text strong {
        font-size: 16px !important;
        line-height: 1.25 !important;
    }

    .home-hero.home-hero--ltr .feature-text span {
        font-size: 14px !important;
        line-height: 1.35 !important;
    }
}

/* Medium desktop refinement */
@media (min-width: 901px) and (max-width: 1280px) {

    .home-hero.home-hero--ltr .hero-visual {
        left: -15% !important;
        width: 78% !important;
        background-size: auto 136% !important;
    }

    .home-hero.home-hero--ltr .hero-content,
    .home-hero.home-hero--ltr .hero-features-wrapper {
        width: 39% !important;
        max-width: 500px !important;
    }

    .home-hero.home-hero--ltr .fresh-badge {
        left: 43% !important;
    }

    .home-hero.home-hero--ltr .hero-title {
        font-size: clamp(42px, 4vw, 58px) !important;
    }

    .home-hero.home-hero--ltr .hero-title span {
        font-size: clamp(34px, 3.35vw, 49px) !important;
    }
}

/* Longer languages */
@media (min-width: 901px) {
    html[lang="ru"] .home-hero.home-hero--ltr .hero-content,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-features-wrapper {
        max-width: 560px !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .hero-content,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-content {
        width: 38.5% !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .hero-title,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-title {
        font-size: clamp(40px, 3.1vw, 55px) !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .hero-title span,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-title span {
        font-size: clamp(33px, 2.6vw, 46px) !important;
    }
}

/* =========================================================
   STEP 31G — TRUE MIRRORED HERO FOR LTR LANGUAGES
   Make EN / RU / PT match the Arabic hero layout exactly,
   but mirrored horizontally:
   - image block on the LEFT
   - content block on the RIGHT
   - same spacing, same proportions, same visual balance
   ========================================================= */
@media (min-width: 901px) {

    .home-hero.home-hero--ltr {
        min-height: 600px !important;
        background: var(--hero-bg) !important;
        overflow: hidden !important;
    }

    .home-hero.home-hero--ltr .hero-container {
        position: relative !important;
        z-index: 5 !important;
        width: min(1440px, calc(100% - 80px)) !important;
        min-height: 500px !important;
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        direction: ltr !important;
    }

    /*
     * Exact Arabic proportions, but moved to the left side.
     * We horizontally mirror the artwork so it feels like the Arabic
     * composition flipped to the opposite side.
     */
    .home-hero.home-hero--ltr .hero-visual {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        bottom: 0 !important;

        width: 75% !important;

        background-repeat: no-repeat !important;
        background-position: right center !important;
        background-size: cover !important;

        -webkit-mask-image: linear-gradient(
            to left,
            #000 0%,
            #000 45%,
            rgba(0,0,0,0.95) 55%,
            rgba(0,0,0,0.72) 66%,
            rgba(0,0,0,0.38) 77%,
            rgba(0,0,0,0.10) 87%,
            transparent 97%
        ) !important;

        mask-image: linear-gradient(
            to left,
            #000 0%,
            #000 45%,
            rgba(0,0,0,0.95) 55%,
            rgba(0,0,0,0.72) 66%,
            rgba(0,0,0,0.38) 77%,
            rgba(0,0,0,0.10) 87%,
            transparent 97%
        ) !important;

        transform: scaleX(-1) !important;
        transform-origin: center center !important;

        z-index: 1 !important;
        opacity: 1 !important;
        filter: none !important;
    }

    /*
     * Same Arabic soft blend behind the copy, mirrored with the image.
     */
    .home-hero.home-hero--ltr .hero-visual::after {
        content: "" !important;
        position: absolute !important;
        inset: 0 !important;
        background: linear-gradient(
            90deg,
            var(--hero-bg) 0%,
            rgba(250, 248, 241, 0.82) 14%,
            rgba(250, 248, 241, 0.20) 38%,
            transparent 65%
        ) !important;
        display: block !important;
    }

    /* Right-side content = Arabic left-side content mirrored. */
    .home-hero.home-hero--ltr .hero-content {
        width: 48% !important;
        max-width: 580px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 55px 0 120px !important;
        text-align: left !important;
        position: relative !important;
        z-index: 5 !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow {
        justify-content: flex-start !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .hero-title {
        text-align: left !important;
    }

    .home-hero.home-hero--ltr .hero-description {
        text-align: left !important;
    }

    .home-hero.home-hero--ltr .hero-actions {
        direction: ltr !important;
        justify-content: flex-start !important;
    }

    /* Put the primary arrow in the natural LTR direction. */
    .home-hero.home-hero--ltr .hero-btn-primary svg {
        transform: rotate(180deg) !important;
    }

    /* Same badge position as Arabic, mirrored. */
    .home-hero.home-hero--ltr .fresh-badge {
        top: 45px !important;
        left: 39% !important;
        right: auto !important;
        width: 100px !important;
        height: 100px !important;
        z-index: 10 !important;
    }

    /* Same features strip as Arabic, but mirrored to the right side. */
    .home-hero.home-hero--ltr .hero-features-wrapper {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        z-index: 10 !important;
        width: 61% !important;
        padding: 0 3.5% 30px !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 28px !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .hero-feature {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        min-width: 0 !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .feature-text {
        text-align: left !important;
    }

    .home-hero.home-hero--ltr .feature-text strong,
    .home-hero.home-hero--ltr .feature-text span {
        white-space: nowrap !important;
    }
}

/* Keep tablet/mobile simple and clean. */
@media (max-width: 900px) {
    .home-hero.home-hero--ltr .hero-content {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow,
    .home-hero.home-hero--ltr .hero-actions {
        justify-content: center !important;
    }

    .home-hero.home-hero--ltr .hero-description,
    .home-hero.home-hero--ltr .feature-text {
        text-align: center !important;
    }
}

/* =========================================================
   STEP 31H — LTR HERO SPACING FIX
   Keep the mirrored hero look, but give the foreign-language
   content the same breathing space and cleaner spacing logic
   as the Arabic version.
   ========================================================= */
@media (min-width: 901px) {

    .home-hero.home-hero--ltr .hero-content {
        width: 48% !important;
        max-width: 580px !important;
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 55px 0 150px !important;
        text-align: left !important;
        position: relative !important;
        z-index: 12 !important;
    }

    .home-hero.home-hero--ltr .hero-eyebrow {
        margin-bottom: 18px !important;
        justify-content: flex-start !important;
    }

    .home-hero.home-hero--ltr .hero-title {
        margin: 0 0 24px !important;
        max-width: 560px !important;
        line-height: 1.12 !important;
    }

    .home-hero.home-hero--ltr .hero-description {
        margin: 0 0 30px !important;
        max-width: 560px !important;
        text-align: left !important;
        line-height: 1.75 !important;
    }

    .home-hero.home-hero--ltr .hero-actions {
        display: flex !important;
        direction: ltr !important;
        justify-content: flex-start !important;
        align-items: center !important;
        gap: 16px !important;
        flex-wrap: wrap !important;
    }

    /*
     * Use a wider bottom strip so the 4 feature items get the same
     * visual breathing room as Arabic and never crash into each other.
     */
    .home-hero.home-hero--ltr .hero-features-wrapper {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        z-index: 12 !important;
        width: 68% !important;
        padding: 0 3.5% 30px !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px !important;
        direction: ltr !important;
        align-items: start !important;
    }

    .home-hero.home-hero--ltr .hero-feature {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        min-width: 0 !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .feature-icon {
        flex-shrink: 0 !important;
    }

    .home-hero.home-hero--ltr .feature-text {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        text-align: left !important;
        line-height: 1.4 !important;
        min-width: 0 !important;
    }

    .home-hero.home-hero--ltr .feature-text strong {
        font-size: 17px !important;
        font-weight: 600 !important;
        white-space: normal !important;
        line-height: 1.28 !important;
    }

    .home-hero.home-hero--ltr .feature-text span {
        font-size: 14px !important;
        white-space: normal !important;
        line-height: 1.32 !important;
    }
}

/* Slight refinement for tighter desktops */
@media (min-width: 901px) and (max-width: 1280px) {
    .home-hero.home-hero--ltr .hero-content {
        width: 49% !important;
        max-width: 560px !important;
    }

    .home-hero.home-hero--ltr .hero-features-wrapper {
        width: 71% !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        gap: 18px !important;
    }

    .home-hero.home-hero--ltr .feature-text strong {
        font-size: 16px !important;
    }

    .home-hero.home-hero--ltr .feature-text span {
        font-size: 13px !important;
    }
}

/* Longer translated languages */
@media (min-width: 901px) {
    html[lang="ru"] .home-hero.home-hero--ltr .hero-features-wrapper,
    html[lang="pt"] .home-hero.home-hero--ltr .hero-features-wrapper {
        width: 72% !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .feature-text strong,
    html[lang="pt"] .home-hero.home-hero--ltr .feature-text strong {
        font-size: 16px !important;
    }

    html[lang="ru"] .home-hero.home-hero--ltr .feature-text span,
    html[lang="pt"] .home-hero.home-hero--ltr .feature-text span {
        font-size: 13px !important;
    }
}

/* =========================================================
   STEP 31I — EXACT MIRRORED FEATURE STRIP SPACING
   Fix the foreign-language bottom features so they use the
   same width/spacing rules as Arabic, mirrored to the right.
   ========================================================= */
@media (min-width: 901px) {
    .home-hero.home-hero--ltr .hero-features-wrapper {
        position: absolute !important;
        right: 0 !important;
        left: auto !important;
        bottom: 0 !important;
        z-index: 10 !important;

        /* EXACT Arabic width, mirrored */
        width: 61% !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 0 3.5% 30px !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        display: grid !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 28px !important;
        direction: ltr !important;
        align-items: center !important;
        width: 100% !important;
        max-width: none !important;
    }

    .home-hero.home-hero--ltr .hero-feature {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 15px !important;
        min-width: 0 !important;
        width: 100% !important;
        direction: ltr !important;
    }

    .home-hero.home-hero--ltr .feature-icon {
        flex: 0 0 auto !important;
    }

    .home-hero.home-hero--ltr .feature-text {
        display: flex !important;
        flex-direction: column !important;
        gap: 4px !important;
        min-width: 0 !important;
        width: auto !important;
        text-align: left !important;
        line-height: 1.45 !important;
    }

    /* Same one-line behavior as Arabic on desktop. */
    .home-hero.home-hero--ltr .feature-text strong {
        font-size: 17px !important;
        font-weight: 600 !important;
        white-space: nowrap !important;
        line-height: 1.45 !important;
    }

    .home-hero.home-hero--ltr .feature-text span {
        font-size: 14px !important;
        font-weight: 400 !important;
        white-space: nowrap !important;
        line-height: 1.45 !important;
    }
}

/* Slightly reduce only the text size on medium desktops instead of squeezing columns. */
@media (min-width: 901px) and (max-width: 1280px) {
    .home-hero.home-hero--ltr .hero-features-wrapper {
        width: 66% !important;
        max-width: none !important;
    }

    .home-hero.home-hero--ltr .hero-features {
        gap: 20px !important;
    }

    .home-hero.home-hero--ltr .feature-text strong {
        font-size: 15px !important;
    }

    .home-hero.home-hero--ltr .feature-text span {
        font-size: 12.5px !important;
    }
}

/* =========================================================
   STEP 31J — PORTUGUESE FEATURE STRIP + HEAD OUTPUT FIX
   ========================================================= */
@media (min-width: 901px) {
    html[lang="pt"] .home-hero.home-hero--ltr .hero-features-wrapper {
        right: 0 !important;
        left: auto !important;
        width: 72% !important;
        max-width: none !important;
        min-width: 0 !important;
        padding: 0 3.5% 30px !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .hero-features {
        width: 100% !important;
        max-width: none !important;
        grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
        gap: 24px !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .hero-feature {
        width: 100% !important;
        min-width: 0 !important;
        gap: 12px !important;
        justify-content: center !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .feature-text {
        min-width: 0 !important;
        width: auto !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .feature-text strong {
        font-size: 15.5px !important;
        white-space: nowrap !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .feature-text span {
        font-size: 12.5px !important;
        white-space: nowrap !important;
    }
}

@media (min-width: 901px) and (max-width: 1280px) {
    html[lang="pt"] .home-hero.home-hero--ltr .hero-features-wrapper {
        width: 76% !important;
        max-width: none !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .hero-features {
        gap: 18px !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .feature-text strong {
        font-size: 14px !important;
    }

    html[lang="pt"] .home-hero.home-hero--ltr .feature-text span {
        font-size: 11.5px !important;
    }
}

/* =========================================================
   STEP 31K — LTR BUTTON ARROWS + SEASON MONTH SPACING
   ========================================================= */

/* ---------------------------------------------------------
   1) TEXT BUTTON ARROWS
   In LTR languages the chevron sits after the text and points OUTWARD
   instead of pointing back toward the label.
   --------------------------------------------------------- */
html[dir="ltr"] .category-view-btn svg,
html[dir="ltr"] .hero-btn-primary svg {
    transform: rotate(180deg) !important;
    flex: 0 0 auto;
}

html[dir="ltr"] .catalog-details-btn > span:last-child {
    display: inline-block;
    transform: rotate(180deg);
    flex: 0 0 auto;
}

/* Keep text-button order natural in LTR. */
html[dir="ltr"] .category-view-btn,
html[dir="ltr"] .hero-btn-primary,
html[dir="ltr"] .catalog-details-btn {
    direction: ltr !important;
}

/* ---------------------------------------------------------
   2) SEASON MONTHS
   Give every month its own equal column.
   Long translated month names are ellipsized instead of overlapping.
   Hovering the shortened label shows the full name via the title attr.
   --------------------------------------------------------- */
html[dir="ltr"] .season-months {
    width: 100%;
    display: grid !important;
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    gap: 7px !important;
    direction: ltr !important;
    align-items: start;
}

html[dir="ltr"] .season-month {
    width: 100%;
    min-width: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    gap: 7px;
}

html[dir="ltr"] .season-month span {
    display: block;

    width: 100%;
    min-width: 0;
    max-width: 46px;

    margin: 0 auto;

    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;

    text-align: center;

    font-size: 9px !important;
    line-height: 1.25;

    cursor: help;
}

html[dir="ltr"] .season-month i {
    flex: 0 0 auto;
    margin: 0 auto;
}

/* Give the text side of the season card enough usable width. */
html[dir="ltr"] .season-card {
    grid-template-columns: 35% 65% !important;
}

html[dir="ltr"] .season-card-content {
    min-width: 0 !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

/* Product titles also stay inside their allocated area. */
html[dir="ltr"] .season-card-content h3 {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Medium desktop: slightly tighter but still separated. */
@media (min-width: 901px) and (max-width: 1280px) {
    html[dir="ltr"] .season-months {
        gap: 5px !important;
    }

    html[dir="ltr"] .season-month span {
        max-width: 38px;
        font-size: 8px !important;
    }

    html[dir="ltr"] .season-card-content {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }
}

/* Mobile/tablet: keep equal month cells and prevent overlap. */
@media (max-width: 900px) {
    html[dir="ltr"] .season-months {
        gap: 4px !important;
    }

    html[dir="ltr"] .season-month span {
        max-width: 34px;
        font-size: 8px !important;
    }
}

/* =========================================================
   STEP 31L — SEASON CARD TITLES VISIBILITY
   Prevent translated product titles from being clipped at the top.
   ========================================================= */
html[dir="ltr"] .season-card-content {
    padding-top: 30px !important;
    overflow: visible !important;
}

html[dir="ltr"] .season-card-content h3 {
    display: block !important;
    width: 100% !important;

    margin: 0 0 12px !important;
    padding: 3px 0 2px !important;

    min-height: 36px !important;
    height: auto !important;

    color: #151a17 !important;

    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;

    text-align: left !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    box-sizing: border-box !important;
}

/* Give the card a little more vertical breathing room in LTR languages. */
html[dir="ltr"] .season-card {
    min-height: 330px !important;
}

/* Smaller desktops */
@media (min-width: 901px) and (max-width: 1280px) {
    html[dir="ltr"] .season-card-content {
        padding-top: 26px !important;
    }

    html[dir="ltr"] .season-card-content h3 {
        min-height: 34px !important;
        font-size: 22px !important;
    }
}

/* =========================================================
   STEP 31M — LTR SEASON CARDS MIRROR ARABIC SPACING
   Keep the English / Russian / Portuguese cards visually
   aligned like the Arabic version, while preserving the
   month-name ellipsis behavior added earlier.
   ========================================================= */
html[dir="ltr"] .season-card {
    direction: ltr !important;
    grid-template-columns: 34% 66% !important;
    align-items: center !important;
    gap: 18px !important;
    min-height: 318px !important;
    padding: 18px 22px !important;
}

html[dir="ltr"] .season-card-media {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    min-width: 0 !important;
}

html[dir="ltr"] .season-card-media img,
html[dir="ltr"] .season-card-media .season-image,
html[dir="ltr"] .season-card-media picture img {
    max-width: 185px !important;
    width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

html[dir="ltr"] .season-card-content {
    min-width: 0 !important;
    padding: 6px 0 0 !important;
    overflow: visible !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 12px !important;
}

html[dir="ltr"] .season-card-content h3 {
    margin: 0 0 2px !important;
    padding: 0 !important;

    min-height: auto !important;
    height: auto !important;

    font-size: 24px !important;
    font-weight: 600 !important;
    line-height: 1.25 !important;

    text-align: right !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}

/* Section titles/labels follow the Arabic visual rhythm, but mirrored. */
html[dir="ltr"] .season-card-content .season-label,
html[dir="ltr"] .season-card-content .availability-title,
html[dir="ltr"] .season-card-content .season-title {
    margin: 0 0 2px !important;
    text-align: right !important;
    line-height: 1.25 !important;
}

/* Month row keeps its ellipsis behavior but gets Arabic-like spacing. */
html[dir="ltr"] .season-months {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
    gap: 8px !important;
    direction: ltr !important;
    align-items: start !important;
    margin: 0 !important;
}

html[dir="ltr"] .season-month {
    width: 100% !important;
    min-width: 0 !important;
    gap: 7px !important;
}

html[dir="ltr"] .season-month span {
    max-width: 46px !important;
    margin: 0 auto !important;
}

/* Value/label rows should breathe more, similar to Arabic cards. */
html[dir="ltr"] .season-card-content .product-meta-row,
html[dir="ltr"] .season-card-content .season-info-row,
html[dir="ltr"] .season-card-content .nutrition-row,
html[dir="ltr"] .season-card-content .detail-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
    min-width: 0 !important;
}

html[dir="ltr"] .season-card-content .product-meta-row .label,
html[dir="ltr"] .season-card-content .season-info-row .label,
html[dir="ltr"] .season-card-content .nutrition-row .label,
html[dir="ltr"] .season-card-content .detail-row .label {
    flex: 0 0 auto !important;
    text-align: right !important;
    white-space: nowrap !important;
}

html[dir="ltr"] .season-card-content .product-meta-row .value,
html[dir="ltr"] .season-card-content .season-info-row .value,
html[dir="ltr"] .season-card-content .nutrition-row .value,
html[dir="ltr"] .season-card-content .detail-row .value {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
}

/* Common blocks seen in the season cards */
html[dir="ltr"] .season-sugar,
html[dir="ltr"] .sugar-value {
    text-align: right !important;
    margin-top: 2px !important;
}

html[dir="ltr"] .season-divider,
html[dir="ltr"] .product-divider {
    margin: 2px 0 !important;
}

html[dir="ltr"] .season-calories,
html[dir="ltr"] .calories-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 18px !important;
}

html[dir="ltr"] .season-calories .value,
html[dir="ltr"] .calories-row .value {
    text-align: left !important;
}

html[dir="ltr"] .season-calories .label,
html[dir="ltr"] .calories-row .label {
    text-align: right !important;
    white-space: nowrap !important;
}

html[dir="ltr"] .season-card-content .catalog-details-btn,
html[dir="ltr"] .season-card-content .season-details-btn,
html[dir="ltr"] .season-card-content .product-details-btn {
    align-self: flex-end !important;
    margin-top: 4px !important;
}

/* Medium desktop keeps the same visual proportions more safely. */
@media (min-width: 901px) and (max-width: 1280px) {
    html[dir="ltr"] .season-card {
        grid-template-columns: 33% 67% !important;
        gap: 14px !important;
        padding: 18px 18px !important;
    }

    html[dir="ltr"] .season-card-media img,
    html[dir="ltr"] .season-card-media .season-image,
    html[dir="ltr"] .season-card-media picture img {
        max-width: 165px !important;
    }

    html[dir="ltr"] .season-card-content h3 {
        font-size: 22px !important;
    }

    html[dir="ltr"] .season-months {
        gap: 6px !important;
    }

    html[dir="ltr"] .season-month span {
        max-width: 40px !important;
        font-size: 8px !important;
    }
}

/* =========================================================
   STEP 31N — LTR SEASON CARD CALORIES + BUTTON ALIGNMENT
   ========================================================= */
html[dir="ltr"] .season-calories {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 14px !important;

    width: 100% !important;

    margin-top: 10px !important;
    padding-top: 12px !important;

    text-align: right !important;
}

html[dir="ltr"] .season-calories span,
html[dir="ltr"] .season-calories strong {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

html[dir="ltr"] .season-calories span {
    order: 1;
}

html[dir="ltr"] .season-calories strong {
    order: 2;
}

/* Keep the details button clearly on the RIGHT edge. */
html[dir="ltr"] .season-details-btn {
    align-self: flex-end !important;

    margin-top: 12px !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* Make the bottom area feel compact instead of stretched. */
html[dir="ltr"] .season-card-content {
    padding-bottom: 20px !important;
}

/* =========================================================
   STEP 31O — ALIGN CALORIES WITH RIGHT-SIDE CONTENT
   ========================================================= */
html[dir="ltr"] .season-calories {
    width: auto !important;
    align-self: flex-end !important;

    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-end !important;

    gap: 12px !important;

    margin-top: 10px !important;
    margin-left: auto !important;
    margin-right: 0 !important;

    padding-top: 12px !important;

    direction: ltr !important;
    text-align: right !important;
}

html[dir="ltr"] .season-calories span,
html[dir="ltr"] .season-calories strong {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
}

/* Keep the visible order natural: value first, label closer to the right edge. */
html[dir="ltr"] .season-calories strong {
    order: 1 !important;
}

html[dir="ltr"] .season-calories span {
    order: 2 !important;
}

/* Make sure the whole bottom area follows the same right alignment. */
html[dir="ltr"] .season-card-content {
    align-items: stretch !important;
}

html[dir="ltr"] .season-details-btn {
    align-self: flex-end !important;
    margin-left: auto !important;
    margin-right: 0 !important;
}

/* =========================================================
   STEP 31P — UNIFORM FEATURED PRODUCT CARDS
   Every featured product card uses the same internal tracks:
   image / title / calories / button.
   This keeps all images, titles, calories and buttons aligned.
   ========================================================= */
.featured-track {
    align-items: stretch !important;
    grid-auto-rows: 1fr !important;
}

.featured-card {
    min-height: 372px !important;
    height: 100% !important;

    padding: 14px 12px 16px !important;

    display: grid !important;
    grid-template-rows: 152px 1fr !important;

    align-items: stretch !important;
    justify-content: initial !important;
}

/* Same image stage for every product. */
.featured-product-image {
    width: 100% !important;
    height: 152px !important;
    min-height: 152px !important;
    max-height: 152px !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    padding: 8px !important;

    box-sizing: border-box !important;
}

.featured-product-image img {
    width: 100% !important;
    height: 100% !important;

    max-width: 190px !important;
    max-height: 136px !important;

    padding: 0 !important;
    margin: auto !important;

    object-fit: contain !important;
    object-position: center center !important;
}

/*
 * Fixed content rows:
 * 1) product title
 * 2) calories
 * 3) action button
 */
.featured-card-content {
    width: 100% !important;

    display: grid !important;
    grid-template-rows: 60px 26px 46px !important;

    gap: 10px !important;

    align-content: end !important;
    align-items: center !important;

    padding: 14px 4px 0 !important;

    box-sizing: border-box !important;
}

/* All titles start on exactly the same horizontal line. */
.featured-card-content h3 {
    width: 100% !important;
    height: 60px !important;
    min-height: 60px !important;
    max-height: 60px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;

    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.38 !important;

    align-self: start !important;
}

/* Arabic and foreign-language title alignment follow their reading direction. */
html[dir="rtl"] .featured-card-content h3 {
    direction: rtl !important;
    text-align: right !important;
}

html[dir="ltr"] .featured-card-content h3 {
    direction: ltr !important;
    text-align: left !important;
}

/* Same calories row height on every card. */
.featured-product-calories {
    width: 100% !important;
    height: 26px !important;
    min-height: 26px !important;

    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    font-size: 12px !important;
    line-height: 1.35 !important;
}

/* Same button baseline and size on every card. */
.featured-product-btn {
    min-width: 96px !important;
    min-height: 42px !important;

    align-self: end !important;
    justify-self: center !important;

    margin: 0 !important;

    padding: 0 16px !important;

    font-size: 13px !important;
}

/* Hovering a clipped title shows its full value via the HTML title attribute. */
.featured-card-content h3[title] {
    cursor: default;
}

/* Medium desktop: preserve the same alignment with slightly smaller dimensions. */
@media (min-width: 901px) and (max-width: 1280px) {
    .featured-card {
        min-height: 350px !important;
        grid-template-rows: 140px 1fr !important;
    }

    .featured-product-image {
        height: 140px !important;
        min-height: 140px !important;
        max-height: 140px !important;
    }

    .featured-product-image img {
        max-height: 124px !important;
    }

    .featured-card-content {
        grid-template-rows: 56px 24px 42px !important;
        gap: 9px !important;
    }

    .featured-card-content h3 {
        height: 56px !important;
        min-height: 56px !important;
        max-height: 56px !important;
        font-size: 16px !important;
    }

    .featured-product-btn {
        min-height: 40px !important;
    }
}

/* =========================================================
   STEP 31Q — FEATURED CARD TITLE + SUBTEXT SPACING
   Keep every title on ONE centered line.
   Long names use ellipsis and show the full title on hover.
   Reduce the gap between the title and calories/subtext.
   ========================================================= */
.featured-card {
    min-height: 338px !important;
}

/* More compact content rhythm. */
.featured-card-content {
    grid-template-rows: 34px 24px 44px !important;
    gap: 6px !important;
    padding-top: 10px !important;
}

/* One centered title line only. */
.featured-card-content h3 {
    width: 100% !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;

    margin: 0 !important;
    padding: 0 6px !important;

    display: block !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    text-align: center !important;
    direction: inherit !important;

    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 34px !important;

    box-sizing: border-box !important;
}

/* Remove previous two-line clamp behavior completely. */
.featured-card-content h3 {
    -webkit-line-clamp: unset !important;
    -webkit-box-orient: unset !important;
}

/* Keep the calories/subtitle directly under the title. */
.featured-product-calories {
    height: 24px !important;
    min-height: 24px !important;

    margin: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 12px !important;
    line-height: 1.2 !important;
}

/* Keep Explore buttons aligned after the tighter content area. */
.featured-product-btn {
    min-height: 42px !important;
    margin-top: 0 !important;
}

/* Medium desktop */
@media (min-width: 901px) and (max-width: 1280px) {
    .featured-card {
        min-height: 326px !important;
    }

    .featured-card-content {
        grid-template-rows: 32px 22px 42px !important;
        gap: 5px !important;
        padding-top: 8px !important;
    }

    .featured-card-content h3 {
        height: 32px !important;
        min-height: 32px !important;
        max-height: 32px !important;

        font-size: 16px !important;
        line-height: 32px !important;
    }

    .featured-product-calories {
        height: 22px !important;
        min-height: 22px !important;
        font-size: 11px !important;
    }
}

/* =========================================================
   STEP 31R — FULL CENTER ALIGNMENT FOR FEATURED CARDS
   Make every featured card use the same centered alignment
   for title, subtitle/calories, and button.
   ========================================================= */
.featured-card {
    display: grid !important;
    grid-template-rows: 152px 1fr !important;
    align-items: stretch !important;
}

.featured-card-content {
    width: 100% !important;
    display: grid !important;
    grid-template-rows: 34px 24px 44px !important;
    gap: 6px !important;
    padding: 10px 8px 0 !important;

    justify-items: center !important;
    align-items: center !important;
    align-content: start !important;
    text-align: center !important;
    box-sizing: border-box !important;
}

.featured-card-content h3 {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    justify-self: center !important;
    align-self: center !important;
}

.featured-product-calories {
    width: 100% !important;
    margin: 0 auto !important;
    text-align: center !important;
    justify-content: center !important;
    justify-self: center !important;
    align-self: center !important;
}

.featured-product-btn {
    justify-self: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Keep centering consistent on tighter desktop widths too. */
@media (min-width: 901px) and (max-width: 1280px) {
    .featured-card-content {
        grid-template-rows: 32px 22px 42px !important;
        gap: 5px !important;
        padding: 8px 8px 0 !important;
    }

    .featured-card-content h3,
    .featured-product-calories,
    .featured-product-btn {
        justify-self: center !important;
    }
}

/* =========================================================
   STEP 31S — 16PX INNER PADDING FOR SEASON CARDS
   ========================================================= */
.season-card {
    padding: 16px !important;
    box-sizing: border-box !important;
}

/* Keep the inner content safely inside the new 16px padding. */
.season-card-content,
.season-card-media {
    min-width: 0 !important;
    box-sizing: border-box !important;
}

/* =========================================================
   STEP 31T — FIX INNER SPACING INSIDE LTR SEASON CARDS
   Prevent text from touching the top/right card edges.
   Also fixes the grid width so content cannot overflow.
   ========================================================= */
html[dir="ltr"] .season-card {
    padding: 16px !important;

    /* 34% image + remaining content, while keeping the gap INSIDE the card */
    grid-template-columns: 34% minmax(0, 1fr) !important;
    column-gap: 16px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}

html[dir="ltr"] .season-card-content {
    min-width: 0 !important;
    width: 100% !important;

    /* Real visible breathing room for the text area */
    padding: 16px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Keep every text block away from the right edge. */
html[dir="ltr"] .season-card-content h3,
html[dir="ltr"] .season-card-content .availability-title,
html[dir="ltr"] .season-card-content .season-title,
html[dir="ltr"] .season-card-content .season-label,
html[dir="ltr"] .season-card-content .season-sugar,
html[dir="ltr"] .season-card-content .sugar-value,
html[dir="ltr"] .season-card-content .season-calories,
html[dir="ltr"] .season-card-content .calories-row {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Preserve the month spacing/ellipsis system from the previous steps. */
html[dir="ltr"] .season-months {
    width: 100% !important;
    min-width: 0 !important;
}

/* Keep the button aligned inside the padded content area. */
html[dir="ltr"] .season-details-btn {
    margin-right: 0 !important;
    margin-left: auto !important;
    align-self: flex-end !important;
}

/* =========================================================
   STEP 31U — PRODUCT INFO SEPARATOR BETWEEN LABEL + VALUE
   The separator belongs BETWEEN the two text columns, not
   on the outer edge of the row.
   ========================================================= */
.product-info-list li {
    display: grid !important;
    grid-template-columns: 92px 1px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    align-items: center !important;
    position: relative !important;
}

/* Label */
.product-info-list li > span {
    grid-column: 1 !important;
    min-width: 0 !important;
}

/* The divider itself */
.product-info-list li::after {
    content: "" !important;
    grid-column: 2 !important;

    width: 1px !important;
    height: 18px !important;

    display: block !important;
    justify-self: center !important;

    background: #dfe7e2 !important;
}

/* Value */
.product-info-list li > strong {
    grid-column: 3 !important;
    min-width: 0 !important;
}

/* Arabic: label on the RIGHT, line in the middle, value on the LEFT */
html[dir="rtl"] .product-info-list li {
    direction: rtl !important;
}

html[dir="rtl"] .product-info-list li > span {
    text-align: right !important;
}

html[dir="rtl"] .product-info-list li > strong {
    text-align: right !important;
}

/* Foreign languages: label on the LEFT, line in the middle, value on the RIGHT */
html[dir="ltr"] .product-info-list li {
    direction: ltr !important;
}

html[dir="ltr"] .product-info-list li > span {
    text-align: left !important;
}

html[dir="ltr"] .product-info-list li > strong {
    text-align: left !important;
}

/* Give longer translated labels a little more room without moving the divider. */
html[dir="ltr"] .product-info-list li {
    grid-template-columns: 105px 1px minmax(0, 1fr) !important;
}

/* =========================================================
   STEP 31V — PRODUCT CARDS CLEANUP + CORRECT COMPARISON DIVIDER
   1) Remove the accidental vertical lines from product cards.
   2) Keep product-card spacing/fonts clean and consistent.
   3) Put the divider in the "fresh vs frozen" panel BETWEEN both columns.
   ========================================================= */

/* ---------------------------------------------------------
   PRODUCT CARDS — NO DIVIDERS
   --------------------------------------------------------- */
.product-info-list li::after {
    content: none !important;
    display: none !important;
}

.product-info-list li {
    display: grid !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    column-gap: 14px !important;
    align-items: center !important;

    min-height: 26px !important;

    font-size: 14px !important;
    line-height: 1.45 !important;
}

.product-info-list {
    gap: 8px !important;
}

.product-info-list li > span,
.product-info-list li > strong {
    grid-column: auto !important;
    min-width: 0 !important;
}

.product-info-list li > span {
    color: #606864 !important;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.product-info-list li > strong {
    color: #242a26 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
}

/* Keep the same visual rhythm in Arabic and foreign languages. */
.catalog-product-content {
    padding: 28px 25px 22px !important;
}

.catalog-product-content h3 {
    margin: 0 !important;

    font-size: 24px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

.catalog-product-description {
    margin: 9px 0 18px !important;

    font-size: 14px !important;
    line-height: 1.7 !important;
}

.catalog-details-btn {
    margin-top: 26px !important;

    min-height: 44px !important;

    font-size: 14px !important;
    font-weight: 600 !important;
}

/* LTR labels get a little more room without adding separators. */
html[dir="ltr"] .product-info-list li {
    grid-template-columns: 132px minmax(0, 1fr) !important;
    direction: ltr !important;
}

html[dir="ltr"] .product-info-list li > span,
html[dir="ltr"] .product-info-list li > strong {
    text-align: left !important;
}

/* RTL keeps the Arabic alignment. */
html[dir="rtl"] .product-info-list li {
    direction: rtl !important;
}

html[dir="rtl"] .product-info-list li > span,
html[dir="rtl"] .product-info-list li > strong {
    text-align: right !important;
}

/* ---------------------------------------------------------
   "WHAT IS THE DIFFERENCE BETWEEN FRESH AND FROZEN?"
   Put the divider exactly BETWEEN the two text columns.
   --------------------------------------------------------- */
.comparison-items {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0 !important;
}

.comparison-items > div {
    padding: 0 26px !important;
    border: 0 !important;
}

/* Arabic: divider between the two columns */
html[dir="rtl"] .comparison-items > div:first-child {
    border-left: 1px solid #ccdce8 !important;
}

/* LTR: divider between the two columns */
html[dir="ltr"] .comparison-items > div:first-child {
    border-right: 1px solid #ccdce8 !important;
    border-left: 0 !important;
}

html[dir="ltr"] .comparison-items > div:last-child {
    border-left: 0 !important;
}

/* Keep typography consistent in the comparison panel too. */
.comparison-items strong {
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

.comparison-items p {
    margin: 10px 0 0 !important;

    font-size: 14px !important;
    line-height: 1.8 !important;
}

/* =========================================================
   STEP 31W — SEASON CARDS HEIGHT INCREASE
   The Product details button is getting clipped in the
   season/availability cards, so increase the card height
   slightly and give the bottom area a bit more room.
   ========================================================= */
.season-card {
    min-height: 410px !important;
}

.season-card-content {
    padding-bottom: 20px !important;
}

.season-details-btn {
    margin-top: 14px !important;
}

/* Medium desktop */
@media (min-width: 901px) and (max-width: 1280px) {
    .season-card {
        min-height: 390px !important;
    }
}

/* =========================================================
   STEP 31X — COMPACT SEASON CARD BOTTOM SPACING
   Keep only ~16px after the Product details button.
   ========================================================= */
.season-card {
    min-height: 360px !important;
    height: auto !important;
    padding-bottom: 16px !important;
}

.season-card-content {
    padding-bottom: 0 !important;
}

.season-details-btn {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}

/* Slightly smaller on medium desktop widths */
@media (min-width: 901px) and (max-width: 1280px) {
    .season-card {
        min-height: 350px !important;
    }
}

/* =========================================================
   STEP 34B — ALL 12 MONTHS IN AVAILABILITY CARDS
   Jan -> Dec, with equal cells and safe ellipsis.
   ========================================================= */

/* All four languages: show all 12 month cells in one clean row. */
.season-months {
    width: 100% !important;

    display: grid !important;
    grid-template-columns: repeat(12, minmax(0, 1fr)) !important;

    gap: 3px !important;

    align-items: start !important;
}

/* Each month owns its own cell, so labels/dots cannot collide. */
.season-month {
    min-width: 0 !important;
    width: 100% !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    gap: 6px !important;
}

/* Long translated month names keep the previous ... + hover behavior. */
.season-month span {
    display: block !important;

    width: 100% !important;
    max-width: 28px !important;
    min-width: 0 !important;

    margin: 0 auto !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    text-align: center !important;

    font-size: 7.5px !important;
    line-height: 1.2 !important;

    cursor: help;
}

.season-month i {
    flex: 0 0 auto !important;
    margin: 0 auto !important;
}

/* Arabic keeps RTL reading order, foreign languages keep LTR order. */
html[dir="rtl"] .season-months {
    direction: rtl !important;
}

html[dir="ltr"] .season-months {
    direction: ltr !important;
}

/* Give the month row slightly more horizontal room inside the card content. */
.season-card-content {
    min-width: 0 !important;
}

/* Medium desktop */
@media (min-width: 901px) and (max-width: 1280px) {
    .season-months {
        gap: 2px !important;
    }

    .season-month span {
        max-width: 24px !important;
        font-size: 7px !important;
    }
}

/* Mobile/tablet: wrap into 2 neat rows of 6 instead of crushing 12 columns. */
@media (max-width: 900px) {
    .season-months {
        grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
        gap: 8px 4px !important;
    }

    .season-month span {
        max-width: 42px !important;
        font-size: 8px !important;
    }
}

/* =========================================================
   STEP 34C — SHOW AVAILABLE MONTHS ONLY
   Seasonal products: show dots only for selected months.
   Year-round products: show localized "Year-round" text.
   ========================================================= */

.season-months--selected-only {
    width: 100% !important;

    display: flex !important;
    flex-wrap: wrap !important;
    align-items: flex-start !important;

    gap: 8px 10px !important;

    margin-top: 2px !important;
}

html[dir="rtl"] .season-months--selected-only {
    direction: rtl !important;
    justify-content: flex-start !important;
}

html[dir="ltr"] .season-months--selected-only {
    direction: ltr !important;
    justify-content: flex-start !important;
}

/* Each visible selected month keeps the same compact dot treatment. */
.season-months--selected-only .season-month {
    width: 34px !important;
    min-width: 34px !important;
    max-width: 34px !important;

    flex: 0 0 34px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    gap: 6px !important;
}

.season-months--selected-only .season-month span {
    width: 34px !important;
    max-width: 34px !important;

    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;

    text-align: center !important;

    font-size: 8px !important;
    line-height: 1.2 !important;

    cursor: help;
}

/* Year-round replaces the dots completely. */
.season-year-round {
    display: inline-flex !important;
    align-items: center !important;

    min-height: 30px !important;

    margin-top: 4px !important;

    color: var(--green) !important;

    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1.35 !important;
}

html[dir="rtl"] .season-year-round {
    align-self: flex-end !important;
    text-align: right !important;
}

html[dir="ltr"] .season-year-round {
    align-self: flex-start !important;
    text-align: left !important;
}

.season-no-months {
    color: #8b948f;
    font-size: 14px;
}


/* =========================================================
   STEP 34D — RIGHT-ALIGN AVAILABLE MONTHS ROW
   Make the visible month dots start from the right side of
   the content area, matching the season heading alignment.
   ========================================================= */

/* Push the whole visible-month group toward the right side. */
.season-months--selected-only{
    justify-content:flex-end !important;
}

/* Keep the season label aligned with the same side. */
.season-card-content .season-availability-title{
    display:block !important;
    width:100% !important;
    text-align:right !important;
}

/* When the month list wraps, each line should also stay right-aligned. */
.season-card-content .season-months--selected-only{
    align-content:flex-start !important;
}

html[dir="rtl"] .season-card-content .season-months--selected-only{
    justify-content:flex-start !important;
}


/* =========================================================
   STEP 34E — ALIGN MONTHS WITH CONTENT START EDGE
   Make the visible month group start exactly from the same
   edge as the content block / Availability season heading.
   ========================================================= */

/* Foreign languages: content block is visually aligned to the RIGHT. */
html[dir="ltr"] .season-card-content .season-months--selected-only{
    width:max-content !important;
    max-width:100% !important;

    margin-left:auto !important;
    margin-right:0 !important;

    justify-content:flex-end !important;
    align-self:flex-end !important;
}

/* Arabic: keep the group anchored to the RTL content start. */
html[dir="rtl"] .season-card-content .season-months--selected-only{
    width:max-content !important;
    max-width:100% !important;

    margin-right:0 !important;
    margin-left:auto !important;

    justify-content:flex-start !important;
    align-self:flex-end !important;
}

/* If the selected months wrap, keep the wrapped rows anchored to the same edge. */
html[dir="ltr"] .season-card-content .season-months--selected-only,
html[dir="rtl"] .season-card-content .season-months--selected-only{
    align-content:flex-start !important;
}


/* =========================================================
   STEP 34F — START MONTH DOTS DIRECTLY UNDER THE HEADING
   In LTR cards, the first month begins from the same LEFT
   start line as "Availability season" and the rest of the content.
   ========================================================= */
html[dir="ltr"] .season-card-content .season-availability-title {
    text-align: left !important;
}

html[dir="ltr"] .season-card-content .season-months--selected-only {
    width: fit-content !important;
    max-width: 100% !important;

    margin-left: 0 !important;
    margin-right: auto !important;

    align-self: flex-start !important;
    justify-content: flex-start !important;

    direction: ltr !important;
}

/* Keep each selected month compact while the whole group starts
   exactly from the content start edge. */
html[dir="ltr"] .season-card-content .season-months--selected-only .season-month {
    flex: 0 0 34px !important;
    width: 34px !important;
}

/* Arabic stays on its own RTL start edge. */
html[dir="rtl"] .season-card-content .season-months--selected-only {
    width: fit-content !important;
    max-width: 100% !important;

    margin-right: 0 !important;
    margin-left: auto !important;

    align-self: flex-end !important;
    justify-content: flex-start !important;

    direction: rtl !important;
}


/* =========================================================
   STEP 34G — KEEP AVAILABILITY TITLE + MONTHS TOGETHER
   Restore "Availability season" to the right side of the
   content area and move the selected month dots with it.
   ========================================================= */

html[dir="ltr"] .season-card-content .season-availability-title {
    display: block !important;
    width: auto !important;

    margin-left: auto !important;
    margin-right: 0 !important;

    align-self: flex-end !important;

    text-align: right !important;
}

html[dir="ltr"] .season-card-content .season-months--selected-only {
    width: fit-content !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: 0 !important;

    align-self: flex-end !important;
    justify-content: flex-end !important;

    direction: ltr !important;
}

/* Keep the title and months visually close as one block. */
html[dir="ltr"] .season-card-content .season-availability-title + .season-months--selected-only {
    margin-top: 2px !important;
}

/* Arabic remains on its normal RTL side. */
html[dir="rtl"] .season-card-content .season-availability-title {
    margin-right: 0 !important;
    margin-left: auto !important;

    align-self: flex-end !important;
    text-align: right !important;
}

html[dir="rtl"] .season-card-content .season-months--selected-only {
    margin-right: 0 !important;
    margin-left: auto !important;

    align-self: flex-end !important;
}


/* =========================================================
   STEP 34H — MAKE FOREIGN-LANGUAGE SEASON CARDS MATCH ARABIC
   Keep the image on the left, but make the content block in
   LTR languages follow the same visual alignment as Arabic:
   title, availability block, sugar text, calories, and button
   all visually aligned from the right side.
   ========================================================= */

html[dir="ltr"] .season-card-content{
    align-items: flex-end !important;
    text-align: right !important;
}

/* Headings and text blocks */
html[dir="ltr"] .season-card-content .season-card-title,
html[dir="ltr"] .season-card-content .season-availability-title,
html[dir="ltr"] .season-card-content .season-sugar-label,
html[dir="ltr"] .season-card-content .season-sugar-value,
html[dir="ltr"] .season-card-content .season-year-round{
    width: 100% !important;
    text-align: right !important;
}

/* Visible months block should sit under the heading from the right side,
   just like the Arabic layout. */
html[dir="ltr"] .season-card-content .season-months--selected-only{
    width: fit-content !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: 0 !important;

    align-self: flex-end !important;
    justify-content: flex-end !important;

    direction: ltr !important;
}

/* Calories row */
html[dir="ltr"] .season-card-content .season-calories-row{
    width: 100% !important;
    justify-content: flex-end !important;
    text-align: right !important;
    gap: 14px !important;
}

html[dir="ltr"] .season-card-content .season-calories-label,
html[dir="ltr"] .season-card-content .season-calories-value{
    text-align: right !important;
}

/* Button sits on the same right edge too */
html[dir="ltr"] .season-card-content .season-button-wrap,
html[dir="ltr"] .season-card-content .season-card-actions{
    width: 100% !important;
    display: flex !important;
    justify-content: flex-end !important;
}

/* Keep month row visually close to its heading */
html[dir="ltr"] .season-card-content .season-availability-title + .season-months--selected-only,
html[dir="ltr"] .season-card-content .season-availability-title + .season-year-round{
    margin-top: 2px !important;
}


/* =========================================================
   STEP 34I — FOREIGN MONTH ROW EXACTLY LIKE ARABIC
   In EN / RU / PT:
   - the first available month starts from the RIGHT edge
     directly under "Availability season"
   - following months continue toward the LEFT
   - month text itself stays readable LTR
   ========================================================= */

html[dir="ltr"] .season-card-content .season-availability-title {
    width: 100% !important;
    text-align: right !important;
}

html[dir="ltr"] .season-card-content .season-months--selected-only {
    width: fit-content !important;
    max-width: 100% !important;

    margin-left: auto !important;
    margin-right: 0 !important;

    align-self: flex-end !important;

    /* Critical part: first month sits on the RIGHT,
       then the rest continue to the LEFT, like Arabic. */
    direction: rtl !important;
    justify-content: flex-start !important;
}

/* Keep English/Russian/Portuguese month names readable normally. */
html[dir="ltr"] .season-card-content .season-months--selected-only .season-month span {
    direction: ltr !important;
    unicode-bidi: plaintext !important;
    text-align: center !important;
}

/* Keep the month block visually attached to the heading. */
html[dir="ltr"] .season-card-content .season-availability-title + .season-months--selected-only {
    margin-top: 2px !important;
}


/* =====================================================
   STEP 42 — SEASONS & AVAILABILITY PAGE
===================================================== */
.seasons-page {
    background: #ffffff;
    color: var(--text);
    overflow: hidden;
}

.seasons-shell {
    width: min(1380px, calc(100% - 64px));
    margin-inline: auto;
}

.seasons-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--green);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
}

.seasons-eyebrow::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 999px;
    background: var(--green);
}

.seasons-hero {
    position: relative;
    padding: 26px 0 74px;
    background:
        radial-gradient(circle at 88% 25%, rgba(0,87,56,.09), transparent 34%),
        linear-gradient(180deg, var(--hero-bg), #ffffff);
}

.seasons-hero::after {
    content: "";
    position: absolute;
    inset-inline-end: -120px;
    bottom: -130px;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(0,87,56,.08);
    border-radius: 50%;
    pointer-events: none;
}

.seasons-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
    align-items: center;
    gap: clamp(42px, 6vw, 96px);
}

.seasons-hero__media {
    position: relative;
    min-height: 530px;
}

.seasons-hero__image-wrap {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 30px;
    background: #edf3ee;
    box-shadow: 0 30px 80px rgba(0,71,47,.12);
}

.seasons-hero__image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 54%, rgba(0,52,34,.32));
}

.seasons-hero__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.seasons-hero__stamp {
    position: absolute;
    inset-inline-start: 28px;
    bottom: 26px;
    z-index: 2;
    min-width: 190px;
    padding: 14px 18px;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 16px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 34px rgba(0,0,0,.12);
}

.seasons-hero__stamp span,
.seasons-hero__stamp small {
    display: block;
}

.seasons-hero__stamp span {
    color: var(--green);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: .08em;
}

.seasons-hero__stamp small {
    margin-top: 3px;
    color: #44534b;
    font-size: 12px;
    font-weight: 600;
}

.seasons-hero__content {
    position: relative;
    z-index: 1;
}

.seasons-hero__content h1 {
    margin: 0;
    color: var(--green);
    font-size: clamp(46px, 5vw, 76px);
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -.035em;
}

.seasons-hero__lead {
    max-width: 700px;
    margin-top: 24px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.9;
}

.seasons-trust-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 36px;
}

.seasons-trust-item {
    min-height: 116px;
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 11px;
    border: 1px solid rgba(0,87,56,.1);
    border-radius: 18px;
    background: rgba(255,255,255,.78);
}

.seasons-trust-icon,
.seasons-insight-card__icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    background: rgba(0,87,56,.08);
    color: var(--green);
}

.seasons-trust-icon svg,
.seasons-insight-card__icon svg {
    width: 23px;
    height: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.seasons-trust-item strong {
    color: #193429;
    font-size: 14px;
    line-height: 1.55;
}

.seasons-calendar {
    padding: 94px 0 108px;
    background: #ffffff;
}

.seasons-section-heading {
    max-width: 780px;
    margin-bottom: 34px;
}

.seasons-section-heading--center {
    margin-inline: auto;
    margin-bottom: 40px;
    text-align: center;
}

.seasons-section-heading--center .seasons-eyebrow {
    justify-content: center;
}

.seasons-section-heading h2 {
    margin: 0;
    color: #15362a;
    font-size: clamp(34px, 3.2vw, 52px);
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -.025em;
}

.seasons-section-heading p {
    margin-top: 15px;
    color: #647069;
    font-size: 16px;
    line-height: 1.8;
}

.seasons-filter-bar {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
    padding: 12px;
    border: 1px solid #e5ebe7;
    border-radius: 18px;
    background: #f8faf9;
}

.seasons-filter {
    min-height: 44px;
    padding: 0 19px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: transparent;
    color: #435049;
    font-size: 14px;
    font-weight: 750;
    cursor: pointer;
    transition: .2s ease;
}

.seasons-filter:hover {
    border-color: rgba(0,87,56,.15);
    background: #ffffff;
    color: var(--green);
}

.seasons-filter.is-active {
    border-color: var(--green);
    background: var(--green);
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0,87,56,.18);
}

.seasons-products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.seasons-product-card {
    position: relative;
    min-width: 0;
    padding: 20px;
    border: 1px solid #e3e9e5;
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 14px 36px rgba(0,60,35,.05);
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.seasons-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0,87,56,.2);
    box-shadow: 0 22px 50px rgba(0,60,35,.09);
}

.seasons-product-card[hidden] {
    display: none !important;
}

.seasons-product-card__top {
    display: grid;
    grid-template-columns: 142px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.seasons-product-card__image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(145deg, #f4f8f5, #ffffff);
}

.seasons-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.seasons-product-card__badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.seasons-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 9px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
}

.seasons-badge--fresh {
    background: #eaf6ef;
    color: #00693f;
}

.seasons-badge--frozen {
    background: #edf5fb;
    color: #0d6394;
}

.seasons-badge--type {
    background: #f4f3ee;
    color: #5e665f;
}

.seasons-product-card__copy h3 {
    margin: 0;
    color: #15362a;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 850;
}

.seasons-product-card__copy p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-top: 8px;
    color: #6a746f;
    font-size: 13px;
    line-height: 1.65;
}

.seasons-year-round,
.seasons-season-text {
    display: inline-flex;
    align-items: center;
    margin-top: 10px;
    color: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.seasons-year-round {
    min-height: 29px;
    padding: 0 10px;
    border-radius: 999px;
    background: #e9f5ed;
}

.seasons-months-block {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #edf0ee;
}

.seasons-months-label {
    display: block;
    margin-bottom: 12px;
    color: #405049;
    font-size: 12px;
    font-weight: 800;
}

.seasons-months {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 4px;
}

.seasons-month {
    min-width: 0;
    text-align: center;
}

.seasons-month i {
    width: 11px;
    height: 11px;
    display: block;
    margin: 0 auto 6px;
    border-radius: 50%;
    background: #d8dfdb;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.02);
}

.seasons-month.is-available i {
    background: #148052;
    box-shadow: 0 0 0 3px rgba(20,128,82,.08);
}

.seasons-month small {
    display: block;
    overflow: hidden;
    color: #7c8681;
    font-size: 8.5px;
    line-height: 1;
    white-space: nowrap;
    text-overflow: clip;
}

.seasons-month.is-available small {
    color: #315646;
    font-weight: 800;
}

.seasons-product-card__link {
    min-height: 42px;
    margin-top: 18px;
    padding: 0 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 12px;
    background: #f5f8f6;
    color: var(--green);
    font-size: 13px;
    font-weight: 800;
    transition: .2s ease;
}

.seasons-product-card__link:hover {
    background: var(--green);
    color: #ffffff;
}

.seasons-no-results {
    margin-top: 26px;
    padding: 22px;
    border: 1px dashed #cbd8d0;
    border-radius: 16px;
    background: #f8faf9;
    color: #5f6c65;
    text-align: center;
    font-weight: 700;
}

.seasons-insights {
    padding: 102px 0;
    background:
        linear-gradient(180deg, #f4f8f5, #eef5f0);
}

.seasons-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.seasons-insight-card {
    min-height: 250px;
    padding: 30px;
    border: 1px solid rgba(0,87,56,.1);
    border-radius: 22px;
    background: rgba(255,255,255,.9);
    box-shadow: 0 14px 38px rgba(0,65,41,.04);
}

.seasons-insight-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
}

.seasons-insight-card__icon svg {
    width: 28px;
    height: 28px;
}

.seasons-insight-card h3 {
    margin-top: 22px;
    color: #15362a;
    font-size: 21px;
    font-weight: 850;
}

.seasons-insight-card p {
    margin-top: 11px;
    color: #66716b;
    font-size: 14px;
    line-height: 1.85;
}

.seasons-cta {
    padding: 88px 0 100px;
    background: #ffffff;
}

.seasons-cta__box {
    position: relative;
    min-height: 310px;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at 15% 20%, rgba(255,255,255,.12), transparent 30%),
        linear-gradient(135deg, #00472f, #006542);
    box-shadow: 0 28px 70px rgba(0,71,47,.18);
}

.seasons-cta__content {
    position: relative;
    z-index: 2;
    padding: 52px clamp(34px, 5vw, 76px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.seasons-cta__content h2 {
    max-width: 720px;
    color: #ffffff;
    font-size: clamp(32px, 3.4vw, 48px);
    line-height: 1.2;
    font-weight: 850;
}

.seasons-cta__content p {
    max-width: 680px;
    margin-top: 14px;
    color: rgba(255,255,255,.82);
    font-size: 16px;
    line-height: 1.8;
}

.seasons-cta__button {
    min-height: 48px;
    margin-top: 25px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border-radius: 12px;
    background: #ffffff;
    color: var(--green);
    font-size: 14px;
    font-weight: 850;
    box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.seasons-cta__media {
    position: relative;
    min-height: 310px;
}

.seasons-cta__media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, #00583a 0%, rgba(0,88,58,.28) 44%, transparent 76%);
}

html[dir="rtl"] .seasons-cta__media::before {
    background: linear-gradient(270deg, #00583a 0%, rgba(0,88,58,.28) 44%, transparent 76%);
}

.seasons-cta__media img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

html[dir="ltr"] .seasons-hero__grid,
html[dir="ltr"] .seasons-product-card__top,
html[dir="ltr"] .seasons-cta__box {
    direction: ltr;
}

html[dir="ltr"] .seasons-hero__content,
html[dir="ltr"] .seasons-section-heading,
html[dir="ltr"] .seasons-product-card,
html[dir="ltr"] .seasons-insight-card,
html[dir="ltr"] .seasons-cta__content {
    text-align: left;
}

html[dir="rtl"] .seasons-hero__content,
html[dir="rtl"] .seasons-section-heading,
html[dir="rtl"] .seasons-product-card,
html[dir="rtl"] .seasons-insight-card,
html[dir="rtl"] .seasons-cta__content {
    text-align: right;
}

/* Fifth navbar item: switch to the existing mobile navigation earlier,
   so the desktop header never becomes cramped on smaller laptops. */
@media (max-width: 1180px) and (min-width: 981px) {
    .navbar {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
    }

    .navigation {
        display: none;
        width: 100%;
        flex-basis: 100%;
    }

    .navigation.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 5px;
        padding-top: 12px;
        border-top: 1px solid var(--border);
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        border-radius: 10px;
    }
}

@media (max-width: 1250px) {
    .seasons-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .seasons-hero__grid {
        gap: 46px;
    }

    .seasons-hero__media {
        min-height: 480px;
    }
}

@media (max-width: 980px) {
    .seasons-shell {
        width: min(100% - 40px, 900px);
    }

    .seasons-hero {
        padding-top: 12px;
    }

    .seasons-hero__grid {
        grid-template-columns: 1fr;
    }

    .seasons-hero__content {
        order: -1;
    }

    .seasons-hero__media {
        min-height: 450px;
    }

    .seasons-hero__content h1 {
        font-size: clamp(42px, 8vw, 64px);
    }

    .seasons-insights-grid {
        grid-template-columns: 1fr;
    }

    .seasons-insight-card {
        min-height: auto;
    }

    .seasons-cta__box {
        grid-template-columns: 1fr;
    }

    .seasons-cta__media {
        min-height: 260px;
    }

    .seasons-cta__media::before,
    html[dir="rtl"] .seasons-cta__media::before {
        background: linear-gradient(180deg, #00583a 0%, rgba(0,88,58,.22) 35%, transparent 72%);
    }
}

@media (max-width: 720px) {
    .seasons-shell {
        width: calc(100% - 28px);
    }

    .seasons-hero {
        padding-bottom: 56px;
    }

    .seasons-hero__media {
        min-height: 340px;
    }

    .seasons-hero__image-wrap {
        border-radius: 22px;
    }

    .seasons-hero__stamp {
        inset-inline-start: 16px;
        bottom: 16px;
        min-width: 160px;
    }

    .seasons-trust-row {
        grid-template-columns: 1fr;
    }

    .seasons-trust-item {
        min-height: 84px;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }

    .seasons-calendar,
    .seasons-insights {
        padding-block: 70px;
    }

    .seasons-filter-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding: 10px;
        scrollbar-width: none;
    }

    .seasons-filter-bar::-webkit-scrollbar {
        display: none;
    }

    .seasons-filter {
        flex: 0 0 auto;
    }

    .seasons-products-grid {
        grid-template-columns: 1fr;
    }

    .seasons-product-card__top {
        grid-template-columns: 112px minmax(0, 1fr);
        gap: 14px;
    }

    .seasons-product-card__image {
        height: 126px;
    }

    .seasons-months {
        gap: 2px;
    }

    .seasons-month i {
        width: 9px;
        height: 9px;
    }

    .seasons-month small {
        font-size: 7.5px;
    }

    .seasons-cta {
        padding: 68px 0 78px;
    }

    .seasons-cta__box {
        border-radius: 22px;
    }

    .seasons-cta__content {
        padding: 38px 26px;
    }
}

@media (max-width: 430px) {
    .seasons-product-card {
        padding: 16px;
    }

    .seasons-product-card__top {
        grid-template-columns: 1fr;
    }

    .seasons-product-card__image {
        height: 180px;
    }

    .seasons-product-card__copy h3 {
        font-size: 19px;
    }
}
