﻿/* =========================================================
   SAMRUDDHI AGRI TECH
   PRODUCT CATALOGUE DROPDOWN
   ========================================================= */

.sat-catalogue-item {
    position: relative;
    display: flex;
    align-items: center;
}

/* Catalogue Button */
.sat-catalogue-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: none;
    background: transparent;
    color: #fff !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 14px;
    margin: 0;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    cursor: pointer;
    white-space: nowrap;
    border-radius: 10px;
    transition: background-color .25s ease, color .25s ease, transform .2s ease;
}

    /* Keep all catalogue text white */
    .sat-catalogue-btn span,
    .sat-catalogue-btn i {
        color: #fff !important;
    }

    /* Book Icon */
    .sat-catalogue-btn > i:first-child {
        font-size: 16px;
    }

/* Arrow */
.sat-catalogue-arrow {
    font-size: 11px !important;
    margin-left: 2px;
    transition: transform .25s ease;
}

/* Hover */
.sat-catalogue-btn:hover {
    background: rgba(255,255,255,.14);
    color: #fff !important;
}

/* Active */
.sat-catalogue-active {
    background: rgba(255,255,255,.16);
}

    .sat-catalogue-active .sat-catalogue-arrow {
        transform: rotate(180deg);
    }


/* =========================================================
   DROPDOWN
   ========================================================= */

.sat-catalogue-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 350px;
    max-width: calc(100vw - 30px);
    padding: 10px;
    background: #fff;
    border: 1px solid rgba(20, 60, 30, .10);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(0,0,0,.18), 0 5px 15px rgba(0,0,0,.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    z-index: 999999;
}

    /* Small top arrow */
    .sat-catalogue-dropdown::before {
        content: "";
        position: absolute;
        top: -7px;
        right: 34px;
        width: 13px;
        height: 13px;
        background: #fff;
        border-left: 1px solid rgba(20,60,30,.10);
        border-top: 1px solid rgba(20,60,30,.10);
        transform: rotate(45deg);
    }

    /* Show */
    .sat-catalogue-dropdown.sat-catalogue-show {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0) scale(1);
    }


/* =========================================================
   DOWNLOAD ITEMS
   ========================================================= */

.sat-catalogue-download {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 72px;
    padding: 11px 12px;
    text-decoration: none !important;
    background: #fff;
    border-radius: 13px;
    transition: background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}

    .sat-catalogue-download:hover {
        background: #f6faf7;
        transform: translateX(3px);
        box-shadow: 0 5px 16px rgba(0,0,0,.07);
    }


/* Language Icon */
.sat-language-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 19px;
    font-weight: 800;
    margin-right: 12px;
}

/* Marathi */
.sat-marathi {
    color: #c85a00;
    background: #fff0df;
}

/* Hindi */
.sat-hindi {
    color: #2357a6;
    background: #eaf1ff;
}


/* Text */
.sat-download-info {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .sat-download-info strong {
        display: block;
        color: #173b27;
        font-size: 15px;
        font-weight: 750;
        line-height: 1.25;
    }

    .sat-download-info small {
        display: block;
        color: #69736d;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.3;
    }


/* Download Icon */
.sat-catalogue-download > i {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    border-radius: 50%;
    background: #eaf7ef;
    color: #168044;
    font-size: 14px;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.sat-catalogue-download:hover > i {
    background: #168044;
    color: #fff;
    transform: translateY(-1px);
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .sat-catalogue-item {
        position: static;
    }

    .sat-catalogue-btn {
        padding: 9px 10px;
        gap: 6px;
        font-size: 14px;
    }

    .sat-catalogue-dropdown {
        left: 0;
        right: auto;
        width: min(340px, calc(100vw - 24px));
        max-width: none;
        top: calc(100% + 8px);
        margin-left: 12px;
        transform-origin: top left;
    }

        .sat-catalogue-dropdown::before {
            left: 32px;
            right: auto;
        }
}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .sat-catalogue-btn {
        font-size: 13px;
        padding: 8px 8px;
    }

        .sat-catalogue-btn > i:first-child {
            font-size: 14px;
        }

    .sat-catalogue-arrow {
        font-size: 9px !important;
    }

    .sat-catalogue-dropdown {
        width: calc(100vw - 20px);
        margin-left: 10px;
        padding: 8px;
        border-radius: 15px;
    }

    .sat-catalogue-download {
        min-height: 66px;
        padding: 9px;
    }

    .sat-language-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        margin-right: 10px;
        font-size: 17px;
    }

    .sat-download-info strong {
        font-size: 14px;
    }

    .sat-download-info small {
        font-size: 11px;
    }

    .sat-catalogue-download > i {
        flex-basis: 32px;
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
}


/* =========================================================
   VERY SMALL DEVICES
   ========================================================= */

@media (max-width: 360px) {

    .sat-catalogue-dropdown {
        width: calc(100vw - 14px);
        margin-left: 7px;
    }

    .sat-catalogue-download {
        padding: 8px;
    }

    .sat-language-icon {
        flex-basis: 37px;
        width: 37px;
        height: 37px;
        margin-right: 8px;
    }

    .sat-download-info strong {
        font-size: 13px;
    }

    .sat-download-info small {
        font-size: 10px;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.sat-catalogue-btn:focus-visible,
.sat-catalogue-download:focus-visible {
    outline: 3px solid rgba(34, 126, 72, .28);
    outline-offset: 2px;
}
