﻿/* =========================================================
   MALWA AGRITECH
   PRODUCTS PAGE
   COMPLETE PROFESSIONAL RESPONSIVE CSS
   ========================================================= */


/* =========================================================
   ROOT / GLOBAL SECTION
   ========================================================= */

.malwa-products-section {
    position: relative;
    width: 100%;
    margin: 0;
    padding: 78px 0 90px;
    background: linear-gradient( 180deg, #f6faf6 0%, #ffffff 45%, #f8fbf8 100% );
    overflow: visible;
}


/* =========================================================
   MAIN CONTAINER
   ========================================================= */

.malwa-products-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.malwa-products-heading {
    width: 100%;
    max-width: 850px;
    margin: 0 auto 52px;
    text-align: center;
}


/* =========================================================
   SECTION EYEBROW
   ========================================================= */

.malwa-section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 13px;
    color: #116b3a;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.7px;
    line-height: 1.4;
    text-transform: uppercase;
}


/* =========================================================
   EYEBROW LINES
   ========================================================= */

.eyebrow-line {
    display: block;
    width: 38px;
    height: 2px;
    flex: 0 0 38px;
    border-radius: 50px;
    background: linear-gradient( 90deg, #116b3a, #54a66d );
}


/* =========================================================
   PRODUCTS MAIN TITLE
   ========================================================= */

.malwa-products-title {
    margin: 0;
    color: #123c2a;
    font-size: clamp( 32px, 4vw, 50px );
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -.5px;
}


    /* =========================================================
   TITLE HIGHLIGHT
   ========================================================= */

    .malwa-products-title span {
        color: #116b3a;
    }


/* =========================================================
   INTRO
   ========================================================= */

.malwa-products-intro {
    max-width: 740px;
    margin: 17px auto 0;
    color: #68766e;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}


/* =========================================================
   PRODUCT GRID
   ========================================================= */

.malwa-product-grid {
    display: grid;
    grid-template-columns: repeat( 3, minmax(0, 1fr) );
    gap: 30px;
    align-items: start;
    width: 100%;
}


/* =========================================================
   MASTER PRODUCT MODULE
   =========================================================

   IMPORTANT:

   This is now transparent.

   Image and content are two independent cards.
   ========================================================= */

.malwa-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    transition: none;
}


    /* =========================================================
   MASTER CARD HOVER
   ========================================================= */

    .malwa-product-card:hover {
        transform: none;
        box-shadow: none;
        border: 0;
    }


/* =========================================================
   =========================================================
   SEPARATE PRODUCT IMAGE CARD
   =========================================================
   ========================================================= */

.malwa-product-image-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    /*
       Professional image proportion.
       The card is large enough to display
       the product clearly but does not become
       unnecessarily tall.
    */

    aspect-ratio: 4 / 3;
    min-height: 0;
    padding: 12px;
    box-sizing: border-box;
    background: linear-gradient( 145deg, #f7fbf7 0%, #edf6ef 100% );
    border: 1px solid rgba( 17, 107, 58, .12 );
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba( 20, 70, 42, .08 );
    isolation: isolate;
    transition: transform .30s ease, box-shadow .30s ease, border-color .30s ease;
}


    /* =========================================================
   IMAGE CARD BACKGROUND GLOW
   ========================================================= */

    .malwa-product-image-card::before {
        content: "";
        position: absolute;
        width: 70%;
        height: 70%;
        left: 50%;
        top: 50%;
        transform: translate( -50%, -50% );
        border-radius: 50%;
        background: radial-gradient( circle, rgba( 255, 255, 255, .96 ) 0%, rgba( 255, 255, 255, .70 ) 42%, rgba( 255, 255, 255, 0 ) 75% );
        z-index: -1;
        pointer-events: none;
    }


    /* =========================================================
   IMAGE CARD INNER BORDER
   ========================================================= */

    .malwa-product-image-card::after {
        content: "";
        position: absolute;
        inset: 8px;
        border: 1px solid rgba( 17, 107, 58, .06 );
        border-radius: 17px;
        pointer-events: none;
        z-index: 4;
    }


    /* =========================================================
   ACTUAL PRODUCT IMAGE
   =========================================================

   FULL PRODUCT IMAGE
   NO CROPPING
   NO DISTORTION
   ========================================================= */

    .malwa-product-image-card img {
        position: relative;
        z-index: 2;
        display: block;
        /*
       Fill the available image panel
       while retaining natural ratio.
    */

        width: 100%;
        height: 100%;
        /*
       CRITICAL:

       Full packet remains visible.
       It is never cropped.
    */

        object-fit: contain;
        object-position: center center;
        /*
       Small controlled breathing space.
    */

        padding: 5px;
        margin: 0;
        box-sizing: border-box;
        border: 0;
        border-radius: 7px;
        aspect-ratio: auto;
        transform: none;
        transform-origin: center center;
        box-shadow: 0 8px 20px rgba( 0, 0, 0, .06 );
        transition: transform .35s ease, filter .35s ease;
    }


/* =========================================================
   IMAGE HOVER
   ========================================================= */

.malwa-product-card:hover
.malwa-product-image-card {
    transform: translateY(-4px);
    border-color: rgba( 17, 107, 58, .19 );
    box-shadow: 0 18px 42px rgba( 20, 70, 42, .13 );
}


    .malwa-product-card:hover
    .malwa-product-image-card img {
        transform: scale(1.025);
    }


/* =========================================================
   IMAGE CARD CATEGORY BADGE
   ========================================================= */

.malwa-product-image-card
.malwa-product-category {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 10;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 27px;
    padding: 6px 11px;
    border-radius: 50px;
    background: rgba( 17, 107, 58, .96 );
    color: #ffffff;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .8px;
    line-height: 1;
    box-shadow: 0 5px 14px rgba( 0, 0, 0, .12 );
    backdrop-filter: blur(6px);
}


/* =========================================================
   IMAGE BOTTOM LABEL
   ========================================================= */

.malwa-product-image-card
.malwa-product-image-bottom {
    position: absolute;
    left: 14px;
    bottom: 13px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    pointer-events: none;
}


    /* =========================================================
   IMAGE BOTTOM LABEL
   ========================================================= */

    .malwa-product-image-card
    .malwa-product-image-bottom span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        min-height: 25px;
        padding: 5px 9px;
        border-radius: 50px;
        background: rgba( 255, 255, 255, .95 );
        color: #116b3a;
        font-size: 8px;
        font-weight: 900;
        letter-spacing: .6px;
        line-height: 1;
        box-shadow: 0 4px 12px rgba( 0, 0, 0, .09 );
        backdrop-filter: blur(7px);
    }


    /* =========================================================
   IMAGE LABEL ICON
   ========================================================= */

    .malwa-product-image-card
    .malwa-product-image-bottom i {
        font-size: 9px;
    }


/* =========================================================
   =========================================================
   SEPARATE PRODUCT CONTENT CARD
   =========================================================
   ========================================================= */

.malwa-product-content-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-width: 0;
    /*
       Separate card from image.
    */

    margin-top: 13px;
    padding: 22px 22px 24px;
    box-sizing: border-box;
    background: #ffffff;
    border: 1px solid rgba( 17, 107, 58, .10 );
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba( 20, 70, 42, .07 );
    transition: transform .30s ease, box-shadow .30s ease, border-color .30s ease;
}


/* =========================================================
   CONTENT CARD HOVER
   ========================================================= */

.malwa-product-card:hover
.malwa-product-content-card {
    transform: translateY(-2px);
    border-color: rgba( 17, 107, 58, .16 );
    box-shadow: 0 15px 38px rgba( 20, 70, 42, .11 );
}


/* =========================================================
   PRODUCT NUMBER
   ========================================================= */

.malwa-product-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    margin-bottom: 12px;
    border-radius: 11px;
    background: linear-gradient( 135deg, #edf7ef, #dcefe2 );
    color: #116b3a;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
}


/* =========================================================
   PRODUCT TITLE
   ========================================================= */

.malwa-product-content-card h3 {
    margin: 0 0 10px;
    color: #173f2d;
    font-size: 23px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -.2px;
}


/* =========================================================
   PRODUCT DESCRIPTION
   ========================================================= */

.malwa-product-description {
    margin: 0 0 18px;
    color: #68766e;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.65;
}


/* =========================================================
   VARIETY BOX
   ========================================================= */

.malwa-variety-box {
    width: 100%;
    margin-top: 2px;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid rgba( 17, 107, 58, .09 );
    border-radius: 15px;
    background: linear-gradient( 135deg, #f8fbf8, #f4f9f5 );
}


/* =========================================================
   VARIETY HEADING
   ========================================================= */

.malwa-variety-heading {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 10px;
    color: #116b3a;
    font-size: 11px;
    font-weight: 900;
    line-height: 1.4;
}


    /* =========================================================
   VARIETY HEADING ICON
   ========================================================= */

    .malwa-variety-heading i {
        font-size: 12px;
    }


/* =========================================================
   VARIETY LIST
   ========================================================= */

.malwa-variety-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: 100%;
}


    /* =========================================================
   VARIETY ITEM
   ========================================================= */

    .malwa-variety-list span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 25px;
        padding: 5px 8px;
        box-sizing: border-box;
        border: 1px solid rgba( 17, 107, 58, .09 );
        border-radius: 7px;
        background: #ffffff;
        color: #4d5e54;
        font-size: 10px;
        font-weight: 700;
        line-height: 1;
        white-space: nowrap;
        transition: background .2s ease, color .2s ease, border-color .2s ease;
    }


        /* =========================================================
   VARIETY HOVER
   ========================================================= */

        .malwa-variety-list span:hover {
            background: #edf7ef;
            color: #116b3a;
            border-color: rgba( 17, 107, 58, .18 );
        }


/* =========================================================
   PRODUCT META
   ========================================================= */

.malwa-product-meta {
    width: 100%;
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid rgba( 17, 107, 58, .09 );
}


    /* =========================================================
   META ROW
   ========================================================= */

    .malwa-product-meta > div {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }


        /* =========================================================
   META ICON
   ========================================================= */

        .malwa-product-meta > div > i {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            flex: 0 0 35px;
            border-radius: 9px;
            background: #edf7ef;
            color: #116b3a;
            font-size: 13px;
        }


    /* =========================================================
   META TEXT
   ========================================================= */

    .malwa-product-meta span {
        display: flex;
        flex-direction: column;
        gap: 2px;
        color: #7a867f;
        font-size: 10px;
        font-weight: 600;
        line-height: 1.3;
    }


    /* =========================================================
   META STRONG
   ========================================================= */

    .malwa-product-meta strong {
        color: #254a38;
        font-size: 12px;
        font-weight: 900;
    }


/* =========================================================
   PRODUCT BUTTON
   ========================================================= */

.malwa-product-button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 45px;
    margin-top: 18px;
    padding: 11px 14px;
    box-sizing: border-box;
    border-radius: 11px;
    background: linear-gradient( 135deg, #116b3a, #0a4f2c );
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.2;
    box-shadow: 0 7px 18px rgba( 17, 107, 58, .13 );
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}


    /* =========================================================
   BUTTON HOVER
   ========================================================= */

    .malwa-product-button:hover {
        color: #ffffff !important;
        text-decoration: none !important;
        transform: translateY(-2px);
        background: linear-gradient( 135deg, #0f6235, #084525 );
        box-shadow: 0 11px 25px rgba( 17, 107, 58, .22 );
    }


    /* =========================================================
   BUTTON ICON
   ========================================================= */

    .malwa-product-button i {
        font-size: 11px;
        transition: transform .25s ease;
    }


    /* =========================================================
   BUTTON ICON HOVER
   ========================================================= */

    .malwa-product-button:hover i {
        transform: translateX(3px);
    }


/* =========================================================
   =========================================================
   PRODUCTS BOTTOM CTA
   =========================================================
   ========================================================= */

.malwa-products-bottom {
    width: 100%;
    margin-top: 44px;
    padding: 21px 24px;
    box-sizing: border-box;
    border: 1px solid rgba( 17, 107, 58, .09 );
    border-radius: 18px;
    background: linear-gradient( 135deg, #edf8ef, #f8fbf8 );
}


/* =========================================================
   CTA CONTENT
   ========================================================= */

.malwa-products-bottom-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
}


/* =========================================================
   CTA ICON
   ========================================================= */

.malwa-products-bottom-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 13px;
    background: linear-gradient( 135deg, #116b3a, #0a4f2c );
    color: #ffffff;
    font-size: 18px;
    box-shadow: 0 7px 18px rgba( 17, 107, 58, .15 );
}


/* =========================================================
   CTA STRONG
   ========================================================= */

.malwa-products-bottom strong {
    display: block;
    margin: 0;
    color: #173f2d;
    font-size: 17px;
    font-weight: 900;
    line-height: 1.3;
}


/* =========================================================
   CTA PARAGRAPH
   ========================================================= */

.malwa-products-bottom p {
    margin: 4px 0 0;
    color: #68766e;
    font-size: 12px;
    line-height: 1.5;
}


/* =========================================================
   =========================================================
   STORAGE SERVICES SECTION
   =========================================================
   ========================================================= */

.malwa-storage-section {
    width: 100%;
    margin-top: 74px;
}


/* =========================================================
   STORAGE HEADER
   ========================================================= */

.malwa-storage-header {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}


    /* =========================================================
   STORAGE TITLE
   ========================================================= */

    .malwa-storage-header h2 {
        margin: 0;
        color: #123c2a;
        font-size: clamp( 30px, 4vw, 44px );
        font-weight: 900;
        line-height: 1.15;
    }


        /* =========================================================
   STORAGE TITLE SPAN
   ========================================================= */

        .malwa-storage-header h2 span {
            color: #116b3a;
        }


    /* =========================================================
   STORAGE DESCRIPTION
   ========================================================= */

    .malwa-storage-header p {
        max-width: 720px;
        margin: 14px auto 0;
        color: #68766e;
        font-size: 15px;
        line-height: 1.7;
    }


/* =========================================================
   STORAGE GRID
   ========================================================= */

.malwa-storage-grid {
    display: grid;
    grid-template-columns: repeat( 4, minmax(0, 1fr) );
    gap: 20px;
    width: 100%;
}


/* =========================================================
   STORAGE CARD
   ========================================================= */

.malwa-storage-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    width: 100%;
    min-width: 0;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    border: 1px solid rgba( 17, 107, 58, .09 );
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba( 21, 73, 44, .07 );
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}


    /* =========================================================
   STORAGE CARD HOVER
   ========================================================= */

    .malwa-storage-card:hover {
        transform: translateY(-4px);
        border-color: rgba( 17, 107, 58, .16 );
        box-shadow: 0 15px 35px rgba( 21, 73, 44, .11 );
    }


/* =========================================================
   STORAGE ICON
   ========================================================= */

.malwa-storage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    border-radius: 13px;
    background: #edf7ef;
    color: #116b3a;
    font-size: 18px;
}


    /* =========================================================
   STORAGE ICON - COLD
   ========================================================= */

    .malwa-storage-icon.cold {
        background: #eaf7ff;
        color: #1674a5;
    }


    /* =========================================================
   STORAGE ICON - WAREHOUSE
   ========================================================= */

    .malwa-storage-icon.warehouse {
        background: #fff5e7;
        color: #b36a12;
    }


    /* =========================================================
   STORAGE ICON - RIPENING
   ========================================================= */

    .malwa-storage-icon.ripening {
        background: #fff0f0;
        color: #b84646;
    }


    /* =========================================================
   STORAGE ICON - DEEP FREEZE
   ========================================================= */

    .malwa-storage-icon.deep-freeze {
        background: #eef0ff;
        color: #4e58a8;
    }


/* =========================================================
   STORAGE LABEL
   ========================================================= */

.storage-label {
    display: block;
    margin-bottom: 5px;
    color: #116b3a;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.3;
}


/* =========================================================
   STORAGE TITLE
   ========================================================= */

.malwa-storage-card h3 {
    margin: 0 0 7px;
    color: #173f2d;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.3;
}


/* =========================================================
   STORAGE DESCRIPTION
   ========================================================= */

.malwa-storage-card p {
    margin: 0;
    color: #68766e;
    font-size: 11px;
    line-height: 1.6;
}


/* =========================================================
   STORAGE TAGS
   ========================================================= */

.storage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 11px;
}


    /* =========================================================
   STORAGE TAG
   ========================================================= */

    .storage-tags span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 22px;
        padding: 4px 7px;
        border-radius: 6px;
        background: #f1f7f2;
        color: #4f6658;
        font-size: 8px;
        font-weight: 800;
        line-height: 1;
    }


/* =========================================================
   STORAGE ACTION
   ========================================================= */

.malwa-storage-action {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 28px;
}


/* =========================================================
   STORAGE BUTTON
   ========================================================= */

.malwa-storage-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    padding: 11px 19px;
    border-radius: 11px;
    background: linear-gradient( 135deg, #116b3a, #0a4f2c );
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 7px 18px rgba( 17, 107, 58, .13 );
    transition: transform .25s ease, box-shadow .25s ease;
}


    /* =========================================================
   STORAGE BUTTON HOVER
   ========================================================= */

    .malwa-storage-button:hover {
        color: #ffffff !important;
        text-decoration: none !important;
        transform: translateY(-2px);
        box-shadow: 0 11px 24px rgba( 17, 107, 58, .21 );
    }


    /* =========================================================
   STORAGE BUTTON ICON
   ========================================================= */

    .malwa-storage-button i {
        transition: transform .25s ease;
    }


    .malwa-storage-button:hover i {
        transform: translateX(3px);
    }


/* =========================================================
   =========================================================
   LARGE DESKTOP
   =========================================================
   ========================================================= */

@media (min-width: 1400px) {

    .malwa-products-container {
        max-width: 1420px;
        padding-left: 20px;
        padding-right: 20px;
    }


    .malwa-product-grid {
        gap: 32px;
    }


    .malwa-product-image-card {
        aspect-ratio: 4 / 3;
        padding: 14px;
    }


        .malwa-product-image-card img {
            padding: 5px;
        }
}


/* =========================================================
   LARGE TABLET / SMALL DESKTOP
   ========================================================= */

@media (max-width: 1199.98px) {

    .malwa-products-container {
        max-width: 1180px;
        padding-left: 22px;
        padding-right: 22px;
    }


    .malwa-product-grid {
        gap: 24px;
    }


    .malwa-product-image-card {
        aspect-ratio: 4 / 3;
        padding: 11px;
    }


    .malwa-product-content-card {
        padding: 20px 20px 22px;
    }


    .malwa-storage-grid {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
        gap: 20px;
    }
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991.98px) {

    .malwa-products-section {
        padding: 65px 0 75px;
    }


    .malwa-products-container {
        padding-left: 18px;
        padding-right: 18px;
    }


    .malwa-product-grid {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
        gap: 24px;
    }


    .malwa-product-image-card {
        aspect-ratio: 4 / 3;
        border-radius: 21px;
        padding: 10px;
    }


        .malwa-product-image-card img {
            padding: 4px;
        }


        .malwa-product-image-card
        .malwa-product-category {
            top: 12px;
            left: 12px;
        }


        .malwa-product-image-card
        .malwa-product-image-bottom {
            left: 12px;
            bottom: 11px;
        }


    .malwa-product-content-card {
        margin-top: 11px;
        padding: 19px 18px 21px;
        border-radius: 20px;
    }


        .malwa-product-content-card h3 {
            font-size: 21px;
        }


    .malwa-product-description {
        font-size: 12px;
    }


    .malwa-variety-box {
        padding: 13px;
    }


    .malwa-variety-list span {
        font-size: 9px;
    }


    .malwa-storage-grid {
        grid-template-columns: repeat( 2, minmax(0, 1fr) );
    }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767.98px) {

    .malwa-products-section {
        padding: 55px 0 65px;
    }


    .malwa-products-container {
        padding-left: 16px;
        padding-right: 16px;
    }


    .malwa-products-heading {
        margin-bottom: 36px;
    }


    .malwa-products-title {
        font-size: clamp( 30px, 8vw, 40px );
    }


    .malwa-products-intro {
        font-size: 14px;
        line-height: 1.7;
    }


    /*
       ONE PRODUCT PER ROW
       ON MOBILE
    */

    .malwa-product-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }


    /*
       IMAGE CARD
       Taller ratio on mobile
    */

    .malwa-product-image-card {
        aspect-ratio: 5 / 4;
        width: 100%;
        padding: 9px;
        border-radius: 20px;
    }


        .malwa-product-image-card img {
            width: 100%;
            height: 100%;
            padding: 4px;
            object-fit: contain;
        }


        .malwa-product-image-card
        .malwa-product-category {
            top: 11px;
            left: 11px;
            min-height: 24px;
            padding: 5px 9px;
            font-size: 8px;
        }


        .malwa-product-image-card
        .malwa-product-image-bottom {
            left: 11px;
            bottom: 10px;
        }


            .malwa-product-image-card
            .malwa-product-image-bottom span {
                min-height: 23px;
                padding: 4px 8px;
                font-size: 7px;
            }


    /*
       SEPARATE CONTENT CARD
    */

    .malwa-product-content-card {
        margin-top: 10px;
        padding: 19px 18px 22px;
        border-radius: 20px;
    }


    .malwa-product-number {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
        margin-bottom: 10px;
        font-size: 12px;
    }


    .malwa-product-content-card h3 {
        font-size: 22px;
    }


    .malwa-product-description {
        margin-bottom: 15px;
        font-size: 12px;
        line-height: 1.6;
    }


    .malwa-variety-box {
        padding: 13px;
    }


    .malwa-variety-heading {
        font-size: 10px;
    }


    .malwa-variety-list {
        gap: 5px;
    }


        .malwa-variety-list span {
            min-height: 23px;
            padding: 4px 7px;
            font-size: 9px;
        }


    .malwa-product-meta {
        margin-top: 14px;
        padding-top: 12px;
    }


        .malwa-product-meta > div > i {
            width: 33px;
            height: 33px;
            flex-basis: 33px;
            font-size: 12px;
        }


        .malwa-product-meta span {
            font-size: 9px;
        }


        .malwa-product-meta strong {
            font-size: 11px;
        }


    .malwa-product-button {
        min-height: 43px;
        margin-top: 15px;
        padding: 10px 12px;
        font-size: 11px;
    }


    /*
       BOTTOM CTA
    */

    .malwa-products-bottom {
        margin-top: 32px;
        padding: 18px 17px;
    }


    .malwa-products-bottom-content {
        gap: 11px;
    }


    .malwa-products-bottom-icon {
        width: 43px;
        height: 43px;
        flex-basis: 43px;
        font-size: 15px;
    }


    .malwa-products-bottom strong {
        font-size: 14px;
    }


    .malwa-products-bottom p {
        font-size: 10px;
    }


    /*
       STORAGE
    */

    .malwa-storage-section {
        margin-top: 58px;
    }


    .malwa-storage-grid {
        grid-template-columns: 1fr;
        gap: 17px;
    }


    .malwa-storage-card {
        padding: 18px;
    }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 575.98px) {

    .malwa-products-section {
        padding: 45px 0 55px;
    }


    .malwa-products-container {
        padding-left: 12px;
        padding-right: 12px;
    }


    .malwa-products-heading {
        margin-bottom: 30px;
    }


    .malwa-section-eyebrow {
        gap: 8px;
        font-size: 10px;
        letter-spacing: 1.3px;
    }


    .eyebrow-line {
        width: 27px;
        flex-basis: 27px;
    }


    .malwa-products-title {
        font-size: 29px;
        letter-spacing: -.3px;
    }


    .malwa-products-intro {
        margin-top: 12px;
        font-size: 13px;
        line-height: 1.65;
    }


    /*
       IMAGE CARD
    */

    .malwa-product-image-card {
        aspect-ratio: 5 / 4;
        padding: 7px;
        border-radius: 18px;
    }


        .malwa-product-image-card img {
            padding: 3px;
        }


        .malwa-product-image-card
        .malwa-product-category {
            top: 10px;
            left: 10px;
            min-height: 22px;
            padding: 5px 8px;
            font-size: 7px;
        }


        .malwa-product-image-card
        .malwa-product-image-bottom {
            left: 10px;
            bottom: 9px;
        }


            .malwa-product-image-card
            .malwa-product-image-bottom span {
                min-height: 21px;
                padding: 4px 7px;
                font-size: 7px;
            }


    /*
       CONTENT CARD
    */

    .malwa-product-content-card {
        margin-top: 9px;
        padding: 17px 15px 20px;
        border-radius: 18px;
    }


    .malwa-product-number {
        width: 36px;
        height: 36px;
        flex-basis: 36px;
        margin-bottom: 9px;
        font-size: 11px;
    }


    .malwa-product-content-card h3 {
        font-size: 21px;
    }


    .malwa-product-description {
        font-size: 12px;
        line-height: 1.6;
    }


    .malwa-variety-box {
        padding: 12px;
    }


    .malwa-variety-heading {
        font-size: 9px;
    }


    .malwa-variety-list {
        gap: 4px;
    }


        .malwa-variety-list span {
            min-height: 22px;
            padding: 4px 6px;
            font-size: 8px;
        }


    .malwa-product-meta {
        margin-top: 13px;
        padding-top: 11px;
    }


        .malwa-product-meta > div > i {
            width: 31px;
            height: 31px;
            flex-basis: 31px;
            font-size: 11px;
        }


        .malwa-product-meta span {
            font-size: 8px;
        }


        .malwa-product-meta strong {
            font-size: 10px;
        }


    .malwa-product-button {
        min-height: 42px;
        margin-top: 14px;
        padding: 9px 11px;
        font-size: 10px;
    }


    /*
       BOTTOM CTA
    */

    .malwa-products-bottom {
        margin-top: 27px;
        padding: 16px 14px;
        border-radius: 15px;
    }


    .malwa-products-bottom-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
        font-size: 14px;
        border-radius: 11px;
    }


    .malwa-products-bottom strong {
        font-size: 13px;
    }


    .malwa-products-bottom p {
        font-size: 9px;
    }


    /*
       STORAGE
    */

    .malwa-storage-section {
        margin-top: 48px;
    }


    .malwa-storage-header {
        margin-bottom: 28px;
    }


        .malwa-storage-header h2 {
            font-size: 29px;
        }


        .malwa-storage-header p {
            margin-top: 10px;
            font-size: 12px;
        }


    .malwa-storage-card {
        gap: 11px;
        padding: 15px;
        border-radius: 16px;
    }


    .malwa-storage-icon {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        font-size: 15px;
    }


    .malwa-storage-card h3 {
        font-size: 15px;
    }


    .malwa-storage-card p {
        font-size: 10px;
    }


    .storage-tags span {
        font-size: 8px;
    }


    .malwa-storage-button {
        min-height: 42px;
        padding: 10px 15px;
        font-size: 11px;
    }
}


/* =========================================================
   VERY SMALL PHONES
   ========================================================= */

@media (max-width: 380px) {

    .malwa-products-section {
        padding: 38px 0 48px;
    }


    .malwa-products-container {
        padding-left: 9px;
        padding-right: 9px;
    }


    .malwa-products-title {
        font-size: 27px;
    }


    /*
       COMPACT IMAGE CARD
    */

    .malwa-product-image-card {
        aspect-ratio: 5 / 4;
        padding: 6px;
        border-radius: 17px;
    }


        .malwa-product-image-card img {
            padding: 2px;
        }


    /*
       CONTENT CARD
    */

    .malwa-product-content-card {
        margin-top: 8px;
        padding: 15px 13px 18px;
        border-radius: 17px;
    }


        .malwa-product-content-card h3 {
            font-size: 20px;
        }


    .malwa-variety-list span {
        font-size: 8px;
        padding: 4px 6px;
    }


    .malwa-product-button {
        min-height: 40px;
        font-size: 10px;
        padding: 9px 10px;
    }


    .malwa-products-bottom-content {
        align-items: flex-start;
    }


    .malwa-products-bottom-icon {
        width: 37px;
        height: 37px;
        flex-basis: 37px;
    }


    .malwa-products-bottom strong {
        font-size: 12px;
    }


    .malwa-storage-card {
        padding: 13px;
        border-radius: 15px;
    }
}


/* =========================================================
   EXTRA SMALL WIDTH
   ========================================================= */

@media (max-width: 320px) {

    .malwa-products-container {
        padding-left: 7px;
        padding-right: 7px;
    }


    .malwa-product-image-card {
        aspect-ratio: 1 / .82;
    }


    .malwa-product-content-card {
        padding: 14px 11px 17px;
    }


        .malwa-product-content-card h3 {
            font-size: 19px;
        }


    .malwa-product-description {
        font-size: 11px;
    }


    .malwa-variety-list span {
        font-size: 7px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .malwa-product-card,
    .malwa-product-image-card,
    .malwa-product-image-card img,
    .malwa-product-content-card,
    .malwa-product-button,
    .malwa-storage-card,
    .malwa-storage-button,
    .malwa-variety-list span {
        transition: none !important;
    }
}


/* =========================================================
   FOCUS ACCESSIBILITY
   ========================================================= */

.malwa-product-button:focus-visible,
.malwa-storage-button:focus-visible {
    outline: 3px solid rgba( 17, 107, 58, .28 );
    outline-offset: 3px;
}


/* =========================================================
   IMAGE SAFETY OVERRIDE
   =========================================================

   IMPORTANT:
   This remains at the END so old CSS cannot
   accidentally force cropping.
   ========================================================= */

.malwa-product-image-card img {
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    object-fit: contain !important;
    object-position: center center !important;
    aspect-ratio: auto !important;
    overflow: visible !important;
}


/* =========================================================
   FINAL RESPONSIVE IMAGE SAFETY
   ========================================================= */

@media (max-width: 767.98px) {

    .malwa-product-image-card img {
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
        max-height: 100% !important;
        object-fit: contain !important;
    }
}


/* =========================================================
   END OF MALWA AGRITECH PRODUCTS CSS
   ========================================================= */
