﻿/* ============================================================
   SAMRUDDHI AGRI TECH
   MAIN PRODUCTS
============================================================ */

.sat-products {
    width: 100%;
    background: #fff;
    overflow: hidden;
}


/* ============================================================
   BEST SELLER TITLE
============================================================ */

.sat-products-intro {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient( 120deg, #073b4c 0%, #087f8c 30%, #13a8a8 55%, #62c370 78%, #f4c95d 100% );
}


    .sat-products-intro::before,
    .sat-products-intro::after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }


    .sat-products-intro::before {
        width: 360px;
        height: 360px;
        right: -80px;
        top: -150px;
        background: rgba(255,255,255,.12);
    }


    .sat-products-intro::after {
        width: 300px;
        height: 300px;
        left: -120px;
        bottom: -170px;
        background: rgba(255,255,255,.10);
    }


.sat-products-intro-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at center, rgba(255,255,255,.13), transparent 55% );
}


.sat-products-intro-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 50px 20px;
    color: #fff;
}


.sat-products-kicker {
    display: inline-block;
    margin-bottom: 10px;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 700;
    opacity: .9;
}


.sat-products-intro h1 {
    margin: 0;
    font-size: clamp(34px, 5vw, 60px);
    line-height: 1.08;
    font-weight: 800;
    text-shadow: 0 5px 20px rgba(0,0,0,.15);
}


.sat-products-intro p {
    margin: 16px 0 0;
    font-size: 18px;
    opacity: .92;
}


/* ============================================================
   LANGUAGE SWITCH
============================================================ */

.sat-product-language {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px;
    background: #fff;
    border-bottom: 1px solid #e8eef1;
}


.sat-language-btn {
    border: 1px solid #d6e1e5;
    background: #fff;
    color: #55717e;
    padding: 8px 17px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    transition: .25s ease;
}


    .sat-language-btn:hover {
        border-color: #1298c8;
        color: #1298c8;
    }


    .sat-language-btn.active {
        background: #1298c8;
        color: #fff;
        border-color: #1298c8;
    }


/* ============================================================
   LANGUAGE
============================================================ */

.sat-lang {
    display: none;
}


body.sat-language-en .sat-en {
    display: inline;
}


body.sat-language-mr .sat-mr {
    display: inline;
}


/* ============================================================
   PRODUCT NAVIGATION
============================================================ */

.sat-product-nav-wrap {
    width: 100%;
    padding: 34px 20px 40px;
    background: linear-gradient( 180deg, #f5f6f7, #eeeeee );
    box-sizing: border-box;
}


.sat-product-nav {
    width: min(1500px, 100%);
    margin: auto;
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 18px;
    align-items: start;
}


.sat-product-item {
    appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    color: #6b7c85;
    text-align: center;
    transition: transform .25s ease;
}


    .sat-product-item:hover {
        transform: translateY(-4px);
        color: #128fc0;
    }


.sat-product-icon {
    width: 112px;
    height: 112px;
    margin: auto;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #d1d1d1;
    font-size: 48px;
    opacity: .6;
    filter: grayscale(100%);
    transition: .3s ease;
}


.sat-product-item.active {
    color: #111;
}


    .sat-product-item.active .sat-product-icon {
        background: #1598ca;
        opacity: 1;
        filter: grayscale(0);
        transform: scale(1.08);
        box-shadow: 0 16px 35px rgba(21,152,202,.25);
    }


.sat-product-name {
    display: block;
    margin-top: 14px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
}


.sat-product-item.active .sat-product-name {
    font-weight: 700;
}


/* ============================================================
   PRODUCT PANELS
============================================================ */

.sat-product-panel {
    display: none;
    width: 100%;
}


    .sat-product-panel.active {
        display: block;
        animation: satPanelIn .4s ease;
    }


@keyframes satPanelIn {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================================
   FUTURE PRODUCT
============================================================ */

.sat-future-product {
    min-height: 400px;
    padding: 70px 20px;
    box-sizing: border-box;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient( 135deg, #f5fbfd, #fff );
}


.sat-future-icon {
    font-size: 75px;
}


.sat-future-product h2 {
    margin: 18px 0 8px;
    font-size: 35px;
    color: #173e50;
}


.sat-future-product p {
    margin: 0;
    color: #72838b;
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 1050px) {

    .sat-product-nav {
        grid-template-columns: repeat(4, 1fr);
        row-gap: 30px;
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 650px) {

    .sat-products-intro {
        min-height: 245px;
    }

    .sat-products-intro-content {
        padding: 40px 15px;
    }

    .sat-products-intro h1 {
        font-size: 36px;
    }

    .sat-products-intro p {
        font-size: 15px;
    }

    .sat-product-nav-wrap {
        padding: 23px 8px 30px;
    }

    .sat-product-nav {
        grid-template-columns: repeat(4, 1fr);
        gap: 23px 4px;
    }

    .sat-product-icon {
        width: 76px;
        height: 76px;
        font-size: 32px;
    }

    .sat-product-name {
        margin-top: 9px;
        font-size: 14px;
    }
}


/* ============================================================
   SMALL MOBILE
============================================================ */

@media (max-width: 400px) {

    .sat-product-icon {
        width: 62px;
        height: 62px;
        font-size: 27px;
    }

    .sat-product-name {
        font-size: 12px;
    }

    .sat-product-nav {
        gap: 20px 2px;
    }

    .sat-language-btn {
        padding: 7px 13px;
    }
}


/* ============================================================
   VERY SMALL DEVICES
============================================================ */

@media (max-width: 320px) {

    .sat-product-icon {
        width: 55px;
        height: 55px;
        font-size: 23px;
    }

    .sat-product-name {
        font-size: 11px;
    }
}
