/* =========================================================
   ANOORUL MUHAMMADIYYA KAMBING
   ISLAMIC GREEN + CREAM ECOMMERCE DESIGN
========================================================= */

:root {

    --green-dark: #063c2b;
    --green: #08734d;
    --green-light: #129667;

    --cream: #f8f1df;
    --cream-light: #fffaf0;

    --gold: #c9a44d;
    --gold-light: #e5cd83;

    --text: #25352d;
    --muted: #718078;

    --white: #ffffff;

    --border: #e9dfcc;

    --shadow:
        0 20px 60px rgba(0,45,30,.12);

    --transition:
        all .35s cubic-bezier(.2,.8,.2,1);

}


* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    font-family:
        "Poppins",
        sans-serif;

    color: var(--text);

    background:
        var(--cream-light);

    overflow-x: hidden;

}


button,
input,
textarea,
select {

    font-family: inherit;

}


button {

    cursor: pointer;

}


a {

    text-decoration: none;

    color: inherit;

}


.container {

    width:
        min(1180px,92%);

    margin: auto;

}


.section {

    padding:
        100px 0;

}



/* =========================================================
   PRELOADER
========================================================= */

#preloader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    background:
        var(--green-dark);

    color:
        var(--gold-light);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    transition:
        opacity .6s,
        visibility .6s;

}


#preloader.hide {

    opacity: 0;

    visibility: hidden;

}


.loader-symbol {

    font-size: 65px;

    animation:
        loaderSpin 2s infinite;

}


.loader-text {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 24px;

    margin-top: 10px;

    letter-spacing: 2px;

}


@keyframes loaderSpin {

    0%,
    100% {

        transform:
            rotate(0)
            scale(1);

    }

    50% {

        transform:
            rotate(180deg)
            scale(1.1);

    }

}



/* =========================================================
   HEADER
========================================================= */

.header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background:
        rgba(255,250,240,.96);

    backdrop-filter:
        blur(18px);

    box-shadow:
        0 4px 30px rgba(0,0,0,.06);

}


.top-pattern {

    height: 4px;

    background:

        repeating-linear-gradient(
            90deg,
            var(--gold) 0 15px,
            var(--green) 15px 30px
        );

}


.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 25px;

}


.logo {

    display: flex;

    align-items: center;

    gap: 12px;

}


.logo-icon {

    width: 50px;

    height: 50px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        var(--green-dark);

    color:
        var(--gold);

    font-size: 27px;

    box-shadow:
        0 8px 20px rgba(0,50,35,.18);

}


.logo-text {

    display: flex;

    flex-direction: column;

}


.logo-text strong {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 27px;

    line-height: 20px;

    color:
        var(--green-dark);

}


.logo-text span {

    color:
        var(--gold);

    font-size: 9px;

    letter-spacing: 1.5px;

    text-transform: uppercase;

}


.desktop-nav {

    display: flex;

    align-items: center;

    gap: 26px;

}


.desktop-nav a {

    font-size: 13px;

    font-weight: 500;

    position: relative;

    transition:
        var(--transition);

}


.desktop-nav a::after {

    content: "";

    position: absolute;

    left: 0;

    bottom: -8px;

    width: 0;

    height: 2px;

    background:
        var(--gold);

    transition:
        var(--transition);

}


.desktop-nav a:hover {

    color:
        var(--green);

}


.desktop-nav a:hover::after {

    width: 100%;

}


.nav-actions {

    display: flex;

    align-items: center;

    gap: 9px;

}


.language-btn,
.cart-btn {

    width: 42px;

    height: 42px;

    border: 0;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        var(--cream);

    color:
        var(--green-dark);

    transition:
        var(--transition);

}


.language-btn:hover,
.cart-btn:hover {

    background:
        var(--green-dark);

    color: white;

    transform:
        translateY(-2px);

}


.cart-btn {

    position: relative;

    font-size: 17px;

}


.cart-count {

    position: absolute;

    top: -4px;

    right: -3px;

    width: 19px;

    height: 19px;

    border-radius: 50%;

    background:
        var(--gold);

    color: white;

    font-size: 9px;

    display: grid;

    place-items: center;

}


.hamburger {

    display: none;

    width: 42px;

    height: 42px;

    border: 0;

    background: transparent;

}


.hamburger span {

    width: 24px;

    height: 2px;

    background:
        var(--green-dark);

    display: block;

    margin: 5px auto;

    transition:
        var(--transition);

}


.mobile-menu {

    display: none;

    background:
        var(--green-dark);

    color: white;

    padding:
        10px 5%;

}


.mobile-menu a {

    display: block;

    padding: 14px 0;

    border-bottom:
        1px solid rgba(255,255,255,.1);

}



/* =========================================================
   HERO
========================================================= */

.hero {

    position: relative;

    min-height: 650px;

    overflow: hidden;

    background:

        radial-gradient(
            circle at 80% 20%,
            rgba(201,164,77,.18),
            transparent 30%
        ),

        linear-gradient(
            135deg,
            #f9f2df,
            #fffaf0
        );

}


.hero-pattern {

    position: absolute;

    inset: 0;

    opacity: .12;

    background-image:

        radial-gradient(
            circle,
            var(--green) 2px,
            transparent 2px
        );

    background-size:
        35px 35px;

}


.hero-content {

    min-height: 650px;

    display: grid;

    grid-template-columns:
        1.05fr .95fr;

    align-items: center;

    position: relative;

}


.islamic-slogan {

    margin-bottom: 22px;

}


.arabic-slogan {

    font-family:
        "Amiri",
        serif;

    font-size: 25px;

    color:
        var(--gold);

    margin-bottom: 5px;

}


.slogan-main {

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    color:
        var(--green-dark);

}


.slogan-sub {

    margin-top: 4px;

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 19px;

    font-weight: 700;

    color:
        var(--green);

}


.eyebrow,
.section-label {

    color:
        var(--gold);

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2.5px;

}


.hero h1 {

    font-family:
        "Cormorant Garamond",
        serif;

    color:
        var(--green-dark);

    font-size:
        clamp(55px,7vw,90px);

    line-height: .85;

    margin:
        10px 0 30px;

}


.hero h1 span {

    color:
        var(--green);

    font-style: italic;

}


.hero-text > p {

    max-width: 550px;

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.9;

}


.hero-buttons {

    display: flex;

    gap: 12px;

    margin-top: 28px;

}


.btn {

    padding:
        14px 25px;

    border-radius:
        50px;

    font-size: 12px;

    font-weight: 600;

    display: inline-flex;

    justify-content: center;

    align-items: center;

    transition:
        var(--transition);

}


.btn:hover {

    transform:
        translateY(-4px);

}


.btn-primary {

    color: white;

    background:
        var(--green-dark);

    box-shadow:
        0 12px 25px rgba(0,60,40,.2);

}


.btn-whatsapp {

    color: white;

    background:
        #159447;

}


.hero-visual {

    min-height: 500px;

    display: grid;

    place-items: center;

    position: relative;

}


.hero-circle {

    width:
        min(440px,78vw);

    height:
        min(440px,78vw);

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            #f0dfa9,
            #bd984b
        );

    border:
        14px solid rgba(255,255,255,.7);

    box-shadow:
        0 35px 70px rgba(65,50,15,.22);

    display: grid;

    place-items: center;

    animation:
        heroFloat 5s infinite ease-in-out;

}


.hero-meat {

    font-size: 165px;

    filter:
        drop-shadow(
            0 20px 20px
            rgba(0,0,0,.2)
        );

}


@keyframes heroFloat {

    0%,
    100% {

        transform:
            translateY(0);

    }

    50% {

        transform:
            translateY(-12px);

    }

}


.floating-card {

    position: absolute;

    padding:
        13px 18px;

    border-radius:
        15px;

    background:
        rgba(255,255,255,.92);

    box-shadow:
        var(--shadow);

    display: flex;

    flex-direction: column;

    backdrop-filter:
        blur(10px);

}


.floating-card strong {

    color:
        var(--green-dark);

    font-size: 20px;

}


.floating-card span {

    color:
        var(--muted);

    font-size: 10px;

}


.floating-card-one {

    top: 95px;

    right: 0;

}


.floating-card-two {

    bottom: 70px;

    left: 5px;

}



/* =========================================================
   TRUST
========================================================= */

.trust-bar {

    background:
        var(--green-dark);

    color: white;

}


.trust-grid {

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

    padding:
        24px 0;

}


.trust-item {

    display: flex;

    align-items: center;

    gap: 12px;

    border-right:
        1px solid rgba(255,255,255,.12);

}


.trust-item:last-child {

    border: 0;

}


.trust-item > span {

    font-size: 25px;

}


.trust-item strong {

    display: block;

    font-size: 11px;

}


.trust-item small {

    display: block;

    color:
        rgba(255,255,255,.55);

    font-size: 9px;

}



/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {

    max-width: 650px;

    text-align: center;

    margin:
        0 auto 45px;

}


.section-heading h2,
.delivery-content h2,
.about-content h2,
.contact-wrapper h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    color:
        var(--green-dark);

    font-size:
        clamp(38px,5vw,58px);

    line-height: 1;

    margin:
        8px 0 15px;

}


.section-heading p {

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.8;

}



/* =========================================================
   PRODUCT TOOLS
========================================================= */

.product-tools {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    margin-bottom: 30px;

}


.search-box {

    width: 300px;

    height: 47px;

    background: white;

    border:
        1px solid var(--border);

    border-radius: 50px;

    display: flex;

    align-items: center;

    padding:
        0 17px;

    gap: 9px;

}


.search-box span {

    font-size: 22px;

    color:
        var(--green);

}


.search-box input {

    border: 0;

    outline: 0;

    width: 100%;

    background: transparent;

    font-size: 12px;

}


.filter-buttons {

    display: flex;

    gap: 7px;

}


.filter-btn {

    padding:
        9px 16px;

    border:
        1px solid #e3d8c2;

    border-radius: 50px;

    background: transparent;

    color:
        var(--green-dark);

    font-size: 10px;

    transition:
        var(--transition);

}


.filter-btn.active,
.filter-btn:hover {

    background:
        var(--green-dark);

    border-color:
        var(--green-dark);

    color: white;

}



/* =========================================================
   PRODUCT CARDS
========================================================= */

.products-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 25px;

}


.product-card {

    background: white;

    border:
        1px solid var(--border);

    border-radius:
        20px;

    overflow: hidden;

    transition:
        var(--transition);

}


.product-card:hover {

    transform:
        translateY(-8px);

    box-shadow:
        var(--shadow);

}


.product-image {

    height: 220px;

    position: relative;

    display: grid;

    place-items: center;

    overflow: hidden;

    background:

        radial-gradient(
            circle,
            #f3e5bd,
            #dfc783
        );

}


.product-image::before {

    content:
        "✦";

    position: absolute;

    font-size: 120px;

    color:
        rgba(255,255,255,.35);

    transform:
        rotate(20deg);

}


.product-meat {

    position: relative;

    z-index: 2;

    font-size: 95px;

    filter:
        drop-shadow(
            0 15px 15px
            rgba(0,0,0,.18)
        );

    transition:
        var(--transition);

}


.product-card:hover .product-meat {

    transform:
        scale(1.08)
        rotate(-3deg);

}


.product-badge {

    position: absolute;

    top: 15px;

    left: 15px;

    z-index: 5;

    padding:
        6px 10px;

    border-radius: 50px;

    background:
        var(--green-dark);

    color: white;

    font-size: 8px;

    text-transform: uppercase;

    letter-spacing: 1px;

}


.product-info {

    padding:
        22px;

}


.product-info h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    color:
        var(--green-dark);

    font-size: 25px;

    margin-bottom: 6px;

}


.product-info p {

    color:
        var(--muted);

    font-size: 10px;

    line-height: 1.7;

    min-height: 35px;

}


.product-bottom {

    margin-top: 18px;

    display: flex;

    align-items: center;

    justify-content: space-between;

}


.product-price {

    color:
        var(--green);

    font-weight: 700;

    font-size: 17px;

}


.product-unit {

    color:
        var(--muted);

    font-size: 9px;

    font-weight: 400;

}


.add-cart {

    width: 43px;

    height: 43px;

    border: 0;

    border-radius: 50%;

    background:
        var(--green-dark);

    color: white;

    font-size: 20px;

    transition:
        var(--transition);

}


.add-cart:hover {

    background:
        var(--gold);

    transform:
        rotate(90deg);

}



/* =========================================================
   OFFERS
========================================================= */

.offers-section {

    background:
        var(--green-dark);

}


.offers-section .section-heading h2 {

    color: white;

}


.offers-section .section-heading p {

    color:
        rgba(255,255,255,.6);

}


.offers-grid {

    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 22px;

}


.offer-card {

    position: relative;

    overflow: hidden;

    padding: 30px;

    border-radius: 20px;

    border:
        1px solid rgba(255,255,255,.12);

    background:
        rgba(255,255,255,.06);

    transition:
        var(--transition);

}


.offer-card:hover {

    transform:
        translateY(-7px);

    background:
        rgba(255,255,255,.1);

}


.offer-card::after {

    content:
        "✦";

    position: absolute;

    right: -15px;

    bottom: -45px;

    color:
        rgba(201,164,77,.18);

    font-size: 150px;

}


.offer-card h3 {

    color:
        var(--gold-light);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 28px;

    margin:
        10px 0;

}


.offer-card p {

    color:
        rgba(255,255,255,.68);

    font-size: 11px;

    line-height: 1.8;

}


.offer-price {

    margin-top: 15px;

    color: white;

    font-size: 22px;

    font-weight: 700;

}



/* =========================================================
   DELIVERY
========================================================= */

.delivery-section {

    background:
        #f1e8d3;

}


.delivery-wrapper {

    background:
        var(--cream-light);

    border-radius:
        30px;

    padding: 60px;

    display: grid;

    grid-template-columns:
        1fr .7fr;

    gap: 50px;

    align-items: center;

    box-shadow:
        var(--shadow);

}


.delivery-content p {

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.9;

}


.delivery-features {

    display: flex;

    flex-wrap: wrap;

    gap: 10px;

    margin:
        25px 0;

}


.delivery-features div {

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        10px 13px;

    background: white;

    border-radius: 50px;

    font-size: 10px;

}


.delivery-note {

    font-size: 10px !important;

    font-style: italic;

}


.delivery-visual {

    height: 270px;

    display: grid;

    place-items: center;

    position: relative;

}


.delivery-icon {

    width: 100px;

    height: 100px;

    border-radius: 50%;

    display: grid;

    place-items: center;

    background:
        var(--green-dark);

    font-size: 45px;

    z-index: 2;

    box-shadow:
        0 20px 30px rgba(0,50,35,.2);

}


.house-icon {

    position: absolute;

    right: 20px;

    bottom: 35px;

    width: 75px;

    height: 75px;

    border-radius: 50%;

    background:
        var(--gold);

    display: grid;

    place-items: center;

    font-size: 30px;

}


.route-line {

    position: absolute;

    width: 70%;

    border-top:
        3px dashed var(--gold);

    transform:
        rotate(-12deg);

}



/* =========================================================
   ABOUT
========================================================= */

.about-grid {

    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    gap: 80px;

    align-items: center;

}


.about-decoration {

    display: grid;

    place-items: center;

}


.ornament-large {

    width: 280px;

    height: 280px;

    border:
        1px solid var(--gold);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color:
        var(--gold);

    font-size: 105px;

    position: relative;

}


.ornament-large::before,
.ornament-large::after {

    content: "";

    position: absolute;

    inset: 18px;

    border:
        1px dashed var(--gold);

    border-radius: 50%;

}


.about-content p {

    color:
        var(--muted);

    font-size: 13px;

    line-height: 1.9;

    margin-bottom: 15px;

}


.about-slogan {

    margin-top: 25px;

    display: flex;

    align-items: center;

    gap: 12px;

    color:
        var(--gold);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 18px;

}



/* =========================================================
   CONTACT
========================================================= */

.contact-section {

    background:
        var(--gold);

}


.contact-wrapper {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

}


.contact-wrapper h2 {

    margin-bottom: 10px;

}


.contact-wrapper p {

    font-size: 12px;

}


.contact-whatsapp {

    background:
        var(--green-dark);

    color: white;

    padding:
        18px 25px;

    border-radius:
        18px;

    display: flex;

    align-items: center;

    gap: 12px;

    transition:
        var(--transition);

}


.contact-whatsapp:hover {

    transform:
        scale(1.04);

}


.contact-whatsapp > span {

    font-size: 30px;

}


.contact-whatsapp small {

    display: block;

    color:
        rgba(255,255,255,.55);

    font-size: 8px;

}


.contact-whatsapp strong {

    font-size: 14px;

}



/* =========================================================
   FOOTER
========================================================= */

.footer {

    background:
        #032c20;

    color: white;

    padding-top: 60px;

}


.footer-grid {

    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr;

    gap: 50px;

    padding-bottom: 50px;

}


.footer-logo {

    width: 48px;

    height: 48px;

    border:
        1px solid var(--gold);

    border-radius: 50%;

    display: grid;

    place-items: center;

    color:
        var(--gold);

    font-size: 24px;

    margin-bottom: 14px;

}


.footer-brand h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

}


.footer-brand p {

    color:
        var(--gold);

    margin-bottom: 8px;

}


.footer-brand span {

    color:
        rgba(255,255,255,.5);

    font-size: 10px;

}


.footer-links {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.footer-links h4 {

    color:
        var(--gold);

    margin-bottom: 8px;

}


.footer-links a,
.footer-links span {

    color:
        rgba(255,255,255,.6);

    font-size: 10px;

    transition:
        var(--transition);

}


.footer-links a:hover {

    color: white;

    transform:
        translateX(4px);

}


.footer-bottom {

    padding:
        18px;

    border-top:
        1px solid rgba(255,255,255,.08);

    text-align: center;

    color:
        rgba(255,255,255,.4);

    font-size: 9px;

}



/* =========================================================
   CART SIDEBAR
========================================================= */

.cart-overlay {

    position: fixed;

    inset: 0;

    background:
        rgba(0,0,0,.5);

    z-index: 1999;

    opacity: 0;

    visibility: hidden;

    transition:
        var(--transition);

}


.cart-overlay.active {

    opacity: 1;

    visibility: visible;

}


.cart-sidebar {

    position: fixed;

    top: 0;

    right: 0;

    bottom: 0;

    width:
        min(430px,100%);

    z-index: 2000;

    background:
        var(--cream-light);

    transform:
        translateX(100%);

    transition:
        transform .4s cubic-bezier(.2,.8,.2,1);

    display: flex;

    flex-direction: column;

}


.cart-sidebar.active {

    transform:
        translateX(0);

}


.cart-header {

    padding: 25px;

    display: flex;

    justify-content: space-between;

    border-bottom:
        1px solid var(--border);

}


.cart-header h3 {

    font-family:
        "Cormorant Garamond",
        serif;

    color:
        var(--green-dark);

    font-size: 28px;

}


.close-btn,
.modal-close {

    width: 38px;

    height: 38px;

    border: 0;

    border-radius: 50%;

    background:
        #eee5d4;

    color:
        var(--green-dark);

    font-size: 22px;

}


.cart-items {

    flex: 1;

    overflow-y: auto;

    padding: 20px;

}


.empty-cart {

    margin-top: 90px;

    text-align: center;

    color:
        var(--muted);

}


.empty-cart-icon {

    font-size: 55px;

    opacity: .5;

    margin-bottom: 12px;

}


.cart-item {

    display: grid;

    grid-template-columns:
        60px 1fr auto;

    gap: 12px;

    align-items: center;

    padding: 12px;

    background: white;

    border-radius: 14px;

    margin-bottom: 10px;

}


.cart-item-image {

    width: 60px;

    height: 60px;

    border-radius: 12px;

    display: grid;

    place-items: center;

    background:
        #ead9a9;

    font-size: 30px;

}


.cart-item h4 {

    color:
        var(--green-dark);

    font-size: 12px;

}


.cart-item-price {

    color:
        var(--green);

    font-size: 10px;

    margin-top: 3px;

}


.qty-controls {

    display: flex;

    align-items: center;

    gap: 8px;

    margin-top: 7px;

}


.qty-controls button {

    width: 24px;

    height: 24px;

    border: 0;

    border-radius: 50%;

    background:
        #eee6d5;

}


.remove-item {

    border: 0;

    background: transparent;

    color:
        #b84a38;

    font-size: 18px;

}


.cart-footer {

    padding: 20px;

    background: white;

    border-top:
        1px solid var(--border);

}


.cart-total {

    display: flex;

    justify-content: space-between;

    margin-bottom: 15px;

}


.cart-total strong {

    color:
        var(--green);

    font-size: 20px;

}


.checkout-btn {

    width: 100%;

    border: 0;

    padding: 15px;

    border-radius: 50px;

    background:
        var(--green-dark);

    color: white;

    font-weight: 600;

}



/* =========================================================
   CHECKOUT MODAL
========================================================= */

.modal-overlay {

    position: fixed;

    inset: 0;

    z-index: 3000;

    display: grid;

    place-items: center;

    padding: 20px;

    background:
        rgba(0,0,0,.65);

    opacity: 0;

    visibility: hidden;

    transition:
        var(--transition);

}


.modal-overlay.active {

    opacity: 1;

    visibility: visible;

}


.checkout-modal {

    width:
        min(550px,100%);

    max-height:
        92vh;

    overflow-y: auto;

    position: relative;

    padding: 35px;

    border-radius: 25px;

    background:
        var(--cream-light);

    transform:
        translateY(20px)
        scale(.97);

    transition:
        var(--transition);

}


.modal-overlay.active .checkout-modal {

    transform:
        translateY(0)
        scale(1);

}


.modal-close {

    position: absolute;

    top: 18px;

    right: 18px;

}


.checkout-header {

    margin-bottom: 25px;

}


.checkout-header h2 {

    font-family:
        "Cormorant Garamond",
        serif;

    color:
        var(--green-dark);

    font-size: 38px;

    margin-top: 7px;

}


.checkout-header p {

    color:
        var(--muted);

    font-size: 11px;

    line-height: 1.7;

}


.form-group {

    margin-bottom: 16px;

}


.form-group label {

    display: block;

    color:
        var(--green-dark);

    font-size: 10px;

    font-weight: 600;

    margin-bottom: 7px;

}


.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    border:
        1px solid #e3d8c2;

    background: white;

    border-radius: 12px;

    outline: none;

    padding:
        13px 14px;

    font-size: 11px;

    color:
        var(--text);

}


.form-group input:focus,
.form-group textarea:focus {

    border-color:
        var(--green);

}



/* =========================================================
   TNG PAYMENT
========================================================= */

.tng-box {

    margin:
        20px 0;

}


.tng-payment {

    text-align: center;

    padding: 22px;

    border:
        2px dashed var(--gold);

    border-radius: 18px;

    background:
        #fff8e9;

}


.tng-icon {

    font-size: 32px;

}


.tng-payment h3 {

    color:
        var(--green-dark);

    font-family:
        "Cormorant Garamond",
        serif;

    font-size: 25px;

    margin:
        5px 0;

}


.tng-payment > p {

    color:
        var(--muted);

    font-size: 10px;

    margin-bottom: 15px;

}


.tng-qr {

    width: 210px;

    height: 210px;

    background: white;

    margin:
        0 auto 18px;

    border-radius: 12px;

    padding: 8px;

    display: grid;

    place-items: center;

    box-shadow:
        0 8px 25px rgba(0,0,0,.08);

}


.tng-qr img {

    width: 100%;

    height: 100%;

    object-fit: contain;

}


.payment-total {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding:
        13px 15px;

    border-radius: 12px;

    background:
        var(--green-dark);

    color: white;

    margin-bottom: 15px;

}


.payment-total span {

    font-size: 10px;

}


.payment-total strong {

    color:
        var(--gold-light);

    font-size: 19px;

}


.payment-instruction {

    display: flex;

    align-items: flex-start;

    text-align: left;

    gap: 10px;

    margin-top: 10px;

}


.payment-instruction > span {

    flex-shrink: 0;

    width: 22px;

    height: 22px;

    border-radius: 50%;

    background:
        var(--gold);

    color: white;

    display: grid;

    place-items: center;

    font-size: 9px;

    font-weight: 700;

}


.payment-instruction p {

    color:
        var(--muted);

    font-size: 9px;

    line-height: 1.6;

}
/* =========================================================
   PAYMENT RECEIPT WHATSAPP NOTE
========================================================= */

.payment-receipt-note {

    margin-top: 18px;

    padding: 16px 18px;

    border-radius: 14px;

    background:
        #fff4d2;

    border:
        1px solid var(--gold);

    color:
        var(--green-dark);

    text-align: center;

    font-size: 11px;

    line-height: 1.7;

    box-shadow:
        0 6px 18px rgba(80,60,15,.08);

}


.payment-receipt-note .receipt-icon {

    font-size: 22px;

    display: block;

    margin-bottom: 5px;

}


.payment-receipt-note strong {

    color:
        var(--green-dark);

    font-weight: 700;

}


.payment-receipt-note a {

    color:
        var(--green);

    font-weight: 800;

    text-decoration: none;

    white-space: nowrap;

}


.payment-receipt-note a:hover {

    color:
        var(--gold);

    text-decoration: underline;

}



/* =========================================================
   CHECKOUT TOTAL
========================================================= */

.checkout-summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding:
        15px 18px;

    background:
        var(--green-dark);

    color: white;

    border-radius: 14px;

    margin-bottom: 15px;

}


.checkout-summary span {

    font-size: 11px;

}


.checkout-summary strong {

    color:
        var(--gold-light);

    font-size: 20px;

}


.whatsapp-order-btn {

    width: 100%;

    border: 0;

    padding: 16px;

    border-radius: 50px;

    background:
        #159447;

    color: white;

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 8px;

    font-size: 12px;

    font-weight: 700;

    transition:
        var(--transition);

}


.whatsapp-order-btn:hover {

    background:
        #087d39;

    transform:
        translateY(-2px);

}


.payment-disclaimer {

    text-align: center;

    color:
        var(--muted);

    font-size: 8px;

    line-height: 1.6;

    margin-top: 10px;

}



/* =========================================================
   FLOATING WHATSAPP
========================================================= */

.floating-whatsapp {

    position: fixed;

    right: 22px;

    bottom: 22px;

    z-index: 1500;

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background:
        #159447;

    color: white;

    display: grid;

    place-items: center;

    font-size: 28px;

    box-shadow:
        0 10px 30px rgba(0,0,0,.25);

    animation:
        whatsappPulse 2.5s infinite;

}


@keyframes whatsappPulse {

    0% {

        box-shadow:
            0 0 0 0
            rgba(21,148,71,.4);

    }

    70% {

        box-shadow:
            0 0 0 15px
            rgba(21,148,71,0);

    }

    100% {

        box-shadow:
            0 0 0 0
            rgba(21,148,71,0);

    }

}



/* =========================================================
   TOAST
========================================================= */

.toast {

    position: fixed;

    left: 50%;

    bottom: 25px;

    z-index: 5000;

    padding:
        12px 20px;

    border-radius: 50px;

    background:
        var(--green-dark);

    color: white;

    font-size: 11px;

    transform:
        translate(-50%,100px);

    opacity: 0;

    transition:
        .35s;

}


.toast.show {

    opacity: 1;

    transform:
        translate(-50%,0);

}



/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:950px) {


    .desktop-nav {

        display: none;

    }


    .hamburger {

        display: block;

    }


    .mobile-menu.active {

        display: block;

    }


    .hero-content {

        grid-template-columns: 1fr;

        text-align: center;

        padding:
            60px 0;

    }


    .hero-text > p {

        margin:
            auto;

    }


    .hero-buttons {

        justify-content: center;

    }


    .hero-visual {

        min-height: 390px;

    }


    .trust-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .products-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .offers-grid {

        grid-template-columns:
            repeat(2,1fr);

    }


    .delivery-wrapper {

        grid-template-columns: 1fr;

    }


    .about-grid {

        grid-template-columns: 1fr;

    }


    .about-decoration {

        display: none;

    }

}



@media(max-width:600px) {


    .nav-container {

        min-height: 72px;

    }


    .logo-icon {

        width: 43px;

        height: 43px;

        font-size: 22px;

    }


    .logo-text strong {

        font-size: 22px;

    }


    .logo-text span {

        font-size: 7px;

    }


    .hero h1 {

        font-size: 56px;

    }


    .hero-buttons {

        flex-direction: column;

    }


    .btn {

        width: 100%;

    }


    .hero-circle {

        width: 300px;

        height: 300px;

    }


    .hero-meat {

        font-size: 110px;

    }


    .floating-card-one {

        right: 0;

        top: 50px;

    }


    .floating-card-two {

        left: 0;

        bottom: 25px;

    }


    .trust-grid {

        grid-template-columns: 1fr;

    }


    .trust-item {

        border-right: 0;

        border-bottom:
            1px solid rgba(255,255,255,.1);

        padding-bottom: 12px;

    }


    .section {

        padding:
            70px 0;

    }


    .product-tools {

        flex-direction: column;

        align-items: stretch;

    }


    .search-box {

        width: 100%;

    }


    .filter-buttons {

        overflow-x: auto;

    }


    .filter-btn {

        white-space: nowrap;

    }


    .products-grid,
    .offers-grid {

        grid-template-columns: 1fr;

    }


    .delivery-wrapper {

        padding:
            30px 22px;

    }


    .contact-wrapper {

        flex-direction: column;

        align-items: flex-start;

    }


    .contact-whatsapp {

        width: 100%;

    }


    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }


    .checkout-modal {

        padding:
            28px 20px;

    }


    .tng-qr {

        width: 190px;

        height: 190px;

    }

}