/* =====================================================
   SATRUPA HOME PAGE
   Premium Customer UI
===================================================== */


/* =====================================================
   GLOBAL HOME
===================================================== */

body {
    background: #f8f6f2;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.97);

    backdrop-filter: blur(15px);

    border-bottom: 1px solid #eeeeee;
}

.nav-container {
    width: min(1280px, 100%);

    min-height: 76px;

    margin: auto;

    padding: 0 30px;

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* LOGO */

.site-header .logo {
    color: #3a4921 !important;

    text-decoration: none !important;

    font-size: 25px;

    font-weight: 700;

    letter-spacing: 4px;
}


/* NAV */

.site-header .nav-links {
    display: flex;

    align-items: center;

    gap: 28px;
}

.site-header .nav-links a {
    position: relative;

    color: #444 !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 500;

    transition: .25s ease;
}

.site-header .nav-links a:hover {
    color: #3a4921 !important;
}

.site-header .nav-links a::after {
    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background: #d4af37;

    transition: .25s ease;
}

.site-header .nav-links a:hover::after {
    width: 100%;
}


/* CART */

.site-header .cart-link {
    display: flex;

    align-items: center;

    gap: 7px;
}

.site-header .cart-link i {
    color: #555;
}

#cart-count {
    min-width: 20px;

    height: 20px;

    padding: 0 5px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #3a4921;

    color: white;

    font-size: 10px;

    font-weight: 700;
}


/* =====================================================
   MOBILE BUTTON
===================================================== */

.mobile-menu-btn {
    display: none;

    width: 42px;

    height: 42px;

    border: none;

    border-radius: 10px;

    background: #f1f3e9;

    color: #3a4921;

    cursor: pointer;

    font-size: 18px;
}


/* =====================================================
   HERO
===================================================== */

.hero-wrapper {
    padding: 20px;
}

.hero-container {
    position: relative;

    width: min(1380px, 100%);

    height: min(680px, calc(100vh - 120px));

    min-height: 520px;

    margin: auto;

    overflow: hidden;

    border-radius: 26px;

    background: #30391d;
}

.hero-container #homeBanner {
    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform 1s ease;
}

.hero-container:hover #homeBanner {
    transform: scale(1.015);
}


/* HERO OVERLAY */

.hero-container::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(90deg,
            rgba(30, 37, 18, .82) 0%,
            rgba(30, 37, 18, .58) 35%,
            rgba(30, 37, 18, .10) 78%);

    pointer-events: none;
}


/* HERO CONTENT */

.hero-content {
    position: absolute;

    z-index: 2;

    left: 7%;

    top: 50%;

    transform: translateY(-50%);

    max-width: 560px;

    color: white;
}

.hero-eyebrow {
    display: block;

    margin-bottom: 14px;

    color: rgba(255, 255, 255, .9);

    font-size: 13px;

    font-weight: 600;

    letter-spacing: .5px;
}

.hero-content h1 {
    margin: 0 0 20px;

    color: white;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 1.05;

    font-weight: 600;

    letter-spacing: -1.5px;
}

.hero-content p {
    max-width: 510px;

    margin-bottom: 30px;

    color: rgba(255, 255, 255, .84);

    font-size: 15px;

    line-height: 1.8;
}


/* HERO BUTTON */

.hero-btn {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 24px;

    border-radius: 8px;

    background: #d4af37;

    color: #202614 !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 700;

    transition: .25s ease;
}

.hero-btn:hover {
    background: #e5c95c;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
}


/* =====================================================
   TRUST
===================================================== */

.trust-section {
    padding: 55px 20px;

    background: #f8f6f2;
}

.trust-grid {
    width: min(1200px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.trust-box {
    min-height: 150px;

    padding: 25px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    background: white;

    border: 1px solid #ebe8e1;

    border-radius: 17px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .04);

    transition: .3s ease;
}

.trust-box:hover {
    transform: translateY(-5px);

    border-color: rgba(212, 175, 55, .35);

    box-shadow: 0 15px 30px rgba(0, 0, 0, .08);
}

.trust-icon {
    width: 43px;

    height: 43px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #f0f2e8;

    color: #3a4921;
}

.trust-box h3 {
    margin: 2px 0 8px;

    color: #263217;

    font-size: 14px;
}

.trust-box p {
    color: #777;

    font-size: 12px;

    line-height: 1.7;
}


/* =====================================================
   ABOUT
===================================================== */

.about-section {
    padding: 100px 20px;

    background: #fff;
}

.about-inner {
    width: min(900px, 100%);

    margin: auto;

    text-align: center;
}

.section-label {
    display: block;

    margin-bottom: 14px;

    color: #9c7b1d;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;
}

.about-section h2 {
    margin-bottom: 22px;

    color: #3a4921;

    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    font-weight: 600;
}

.about-section p {
    max-width: 720px;

    margin: auto;

    color: #777;

    font-size: 15px;

    line-height: 1.9;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: 25px;

    color: #3a4921 !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 600;
}

.text-link:hover {
    color: #b08b22 !important;
}


/* =====================================================
   CTA
===================================================== */

.cta-section {
    position: relative;

    overflow: hidden;

    padding: 90px 20px;

    background:
        linear-gradient(135deg,
            #3a4921,
            #273016);

    color: white;

    text-align: center;
}

.cta-section::before {
    content: "";

    position: absolute;

    width: 400px;

    height: 400px;

    left: -200px;

    top: -220px;

    border: 1px solid rgba(212, 175, 55, .16);

    border-radius: 50%;
}

.cta-section::after {
    content: "";

    position: absolute;

    width: 330px;

    height: 330px;

    right: -170px;

    bottom: -190px;

    border: 1px solid rgba(212, 175, 55, .13);

    border-radius: 50%;
}

.cta-inner {
    position: relative;

    z-index: 2;

    width: min(800px, 100%);

    margin: auto;
}

.cta-section .section-label {
    color: #d4af37;
}

.cta-section h2 {
    margin-bottom: 15px;

    color: white;

    font-size: clamp(30px, 4vw, 45px);

    font-weight: 600;
}

.cta-section p {
    margin-bottom: 28px;

    color: rgba(255, 255, 255, .72);

    font-size: 14px;
}

.cta-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 14px 27px;

    border-radius: 30px;

    background: #d4af37;

    color: #202614 !important;

    text-decoration: none !important;

    font-size: 13px;

    font-weight: 700;

    transition: .25s ease;
}

.cta-btn:hover {
    background: #e5c95c;

    transform: translateY(-3px);

    box-shadow: 0 12px 25px rgba(0, 0, 0, .2);
}


/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    background: #1e2412 !important;

    color: white;

    padding: 60px 30px 25px;
}

.footer-container {
    width: min(1100px, 100%);

    margin: auto;

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 60px;
}

.footer-brand h3 {
    margin-bottom: 18px;

    color: #d4af37;

    font-size: 24px;

    letter-spacing: 4px;
}

.footer-brand p {
    max-width: 300px;

    color: rgba(255, 255, 255, .6);

    font-size: 12px;

    line-height: 1.8;
}

.footer-location {
    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 22px;

    color: rgba(255, 255, 255, .7);

    font-size: 12px;
}

.footer-location i {
    color: #d4af37;
}

.footer-column {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-column h4 {
    margin-bottom: 5px;

    color: white;

    font-size: 14px;
}

.footer-column a {
    color: rgba(255, 255, 255, .6) !important;

    text-decoration: none !important;

    font-size: 12px;

    transition: .25s ease;
}

.footer-column a:hover {
    color: #d4af37 !important;
}

.footer-bottom {
    width: min(1100px, 100%);

    margin: 45px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, .1);

    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, .45);

    font-size: 11px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .site-header .nav-links {
        gap: 16px;
    }

    .site-header .nav-links a {
        font-size: 12px;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 768px) {

    .nav-container {
        min-height: 68px;

        padding: 0 18px;
    }

    .site-header .logo {
        font-size: 21px;

        letter-spacing: 3px;
    }

    .mobile-menu-btn {
        display: flex;

        align-items: center;

        justify-content: center;
    }

    .site-header .nav-links {
        position: absolute;

        left: 15px;

        right: 15px;

        top: 78px;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 3px;

        padding: 12px;

        background: white;

        border: 1px solid #eee;

        border-radius: 15px;

        box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    }

    .site-header .nav-links.mobile-open {
        display: flex;
    }

    .site-header .nav-links a {
        padding: 12px 14px;

        border-radius: 8px;
    }

    .site-header .nav-links a:hover {
        background: #f4f5ed;
    }

    .site-header .nav-links a::after {
        display: none;
    }


    /* HERO */

    .hero-wrapper {
        padding: 10px;
    }

    .hero-container {
        height: 75vh;

        min-height: 550px;

        border-radius: 18px;
    }

    .hero-container::after {
        background:
            linear-gradient(180deg,
                rgba(20, 25, 10, .08),
                rgba(20, 25, 10, .86));
    }

    .hero-content {
        left: 24px;

        right: 24px;

        top: auto;

        bottom: 50px;

        transform: none;
    }

    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 12px;

        line-height: 1.7;
    }


    /* TRUST */

    .trust-section {
        padding: 35px 15px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }


    /* ABOUT */

    .about-section {
        padding: 70px 20px;
    }


    /* CTA */

    .cta-section {
        padding: 70px 20px;
    }


    /* FOOTER */

    .footer-container {
        grid-template-columns: 1fr 1fr;

        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .hero-container {
        min-height: 560px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-btn {
        width: 100%;

        justify-content: center;
    }

    .trust-box {
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: auto;
    }

}

/* =====================================================
   SATRUPA HERO - FINAL RESPONSIVE VERSION
   ===================================================== */

.hero-container {
    position: relative;
    overflow: hidden;
}

.hero-container>img#homeBanner {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .8s ease;
}

.hero-container:hover>img#homeBanner {
    transform: scale(1.015);
}

.hero-container::after {
    z-index: 1;
}

.hero-content {
    position: absolute;
    z-index: 2;
}

@media (prefers-reduced-motion: reduce) {

    .hero-container>img#homeBanner,
    .hero-content {
        animation: none !important;
        transition: none !important;
    }
}


/* =====================================================
   FINAL MOBILE LAYOUT
   ===================================================== */

@media (max-width: 768px) {

    .nav-container {
        min-height: 68px;
        padding: 0 16px;
    }

    .site-header .logo {
        font-size: 21px;
        letter-spacing: 3px;
    }

    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .site-header .nav-links {
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
        background: #fff;
        border: 1px solid #eee;
        border-radius: 15px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .12);
    }

    .site-header .nav-links.mobile-open {
        display: flex;
    }

    .site-header .nav-links a {
        display: block;
        padding: 12px 14px;
        border-radius: 8px;
    }

    .site-header .nav-links a:hover {
        background: #f4f5ed;
    }

    .site-header .nav-links a::after {
        display: none;
    }

    /* HERO */
    .hero-wrapper {
        width: 100%;
        padding: 8px;
    }

    .hero-container {
        width: 100%;
        height: 520px;
        min-height: 520px;
        margin: 0 auto;
        border-radius: 18px;
        overflow: hidden;
        background: #30391d;
    }

    .hero-container>img#homeBanner {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: 68% center;
        animation: none !important;
        transform: none !important;
    }

    .hero-container::after {
        background:
            linear-gradient(180deg,
                rgba(20, 25, 10, .04) 0%,
                rgba(20, 25, 10, .18) 35%,
                rgba(20, 25, 10, .82) 100%);
    }

    .hero-content {
        left: 24px;
        right: 24px;
        top: auto;
        bottom: 30px;
        transform: none;
        max-width: none;
    }

    .hero-eyebrow {
        margin-bottom: 12px;
        font-size: 11px;
        letter-spacing: .8px;
    }

    .hero-content h1 {
        margin-bottom: 14px;
        font-size: 36px;
        line-height: 1.06;
        letter-spacing: -.8px;
    }

    .hero-content p {
        max-width: 320px;
        margin-bottom: 20px;
        font-size: 12px;
        line-height: 1.6;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        border-radius: 9px;
    }

    /* OTHER MOBILE SECTIONS */
    .trust-section {
        padding: 35px 15px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 70px 20px;
    }

    .about-section h2 {
        font-size: 34px;
    }

    .cta-section {
        padding: 70px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}


/* =====================================================
   SMALL MOBILE
   ===================================================== */

@media (max-width: 480px) {

    .nav-container {
        min-height: 64px;
        padding: 0 14px;
    }

    .site-header .logo {
        font-size: 20px;
        letter-spacing: 2.5px;
    }

    .mobile-menu-btn {
        width: 40px;
        height: 40px;
    }

    .hero-wrapper {
        padding: 8px;
    }

    .hero-container {
        height: 500px;
        min-height: 500px;
        border-radius: 16px;
    }

    .hero-container>img#homeBanner {
        object-position: 68% center;
        animation: none !important;
        transform: none !important;
    }

    .hero-content {
        left: 22px;
        right: 22px;
        bottom: 26px;
    }

    .hero-eyebrow {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .hero-content h1 {
        margin-bottom: 12px;
        font-size: 32px;
        line-height: 1.05;
    }

    .hero-content p {
        max-width: 300px;
        margin-bottom: 18px;
        font-size: 12px;
        line-height: 1.55;
    }

    .hero-btn {
        width: 100%;
        padding: 14px 18px;
        font-size: 13px;
    }

    .trust-box {
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: auto;
    }
}