/* =========================================================
   AQUAGREENSTORE
   MASTER STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #faf6ed;
    color: #263528;
    font-family: "DM Sans", sans-serif;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;

    background: rgba(250, 246, 237, 0.88);
    backdrop-filter: blur(15px);

    border-bottom: 1px solid rgba(38, 53, 40, 0.08);
}

.nav-container {
    width: min(1200px, calc(100% - 60px));
    height: 82px;

    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* LOGO */

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    width: 180px;
}

.logo-name {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.8px;
}

.logo-store {
    font-size: 8px;
    letter-spacing: 4px;
    margin-top: 5px;
    margin-left: 2px;
    color: #c85d43;
}


/* NAVIGATION */

.nav {
    display: flex;
    align-items: center;
    gap: 38px;

    font-size: 13px;
    font-weight: 500;
}

.nav a {
    transition: 0.2s ease;
}

.nav a:hover {
    color: #c85d43;
}


/* CART */

.cart {
    position: relative;

    width: 180px;

    display: flex;
    justify-content: flex-end;
}

.cart-number {
    position: absolute;

    top: -9px;
    right: -7px;

    width: 17px;
    height: 17px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c85d43;
    color: white;

    font-size: 9px;
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: 100vh;
    padding-top: 82px;
    overflow: hidden;
}

.hero-container {
    width: min(1200px, calc(100% - 60px));

    min-height: calc(100vh - 82px);

    margin: auto;

    display: grid;
    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 40px;
}


/* HERO TEXT */

.hero-content {
    padding-bottom: 30px;
}

.eyebrow {
    color: #c85d43;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;

    margin-bottom: 22px;
}

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 6vw, 82px);

    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -3px;
}

.hero h1 em {
    color: #c85d43;
    font-weight: 500;
}

.hero-text {
    max-width: 520px;

    margin-top: 30px;

    color: #70776d;

    font-size: 16px;
    line-height: 1.7;
}


/* HERO BUTTONS */

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 32px;
}

.button-primary,
.button-secondary {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    height: 52px;

    padding: 0 25px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;

    transition: 0.2s ease;
}

.button-primary {
    background: #c85d43;
    color: white;
}

.button-primary:hover {
    background: #a94a34;
}

.button-secondary {
    border: 1px solid #263528;
    color: #263528;
}

.button-secondary:hover {
    background: #263528;
    color: white;
}


/* HERO IMAGE */

.hero-image {
    display: flex;

    justify-content: center;
    align-items: center;
}

.pickle-circle {
    width: min(470px, 80vw);
    height: min(470px, 80vw);

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 35% 30%,
            #f1b94e,
            #d99135 45%,
            #b7652d 100%
        );

    position: relative;

    box-shadow:
        20px 25px 60px rgba(87, 56, 20, 0.18);

    display: flex;
    align-items: center;
    justify-content: center;
}

.pickle-circle::before {
    content: "";

    position: absolute;

    width: 72%;
    height: 72%;

    border-radius: 50%;

    border: 1px dashed rgba(255, 255, 255, 0.6);
}

.pickle-label {
    width: 180px;
    height: 180px;

    background: #fbf6eb;

    border-radius: 50%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    transform: rotate(-7deg);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.pickle-label span {
    font-size: 9px;
    letter-spacing: 2px;
}

.pickle-label strong {
    font-family: "Playfair Display", serif;

    font-size: 30px;

    margin: 5px 0;
}

.pickle-label small {
    font-size: 8px;
    letter-spacing: 1px;
}


/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
    padding: 130px 0;
    background: #faf6ed;
}

.products-container {
    width: min(1200px, calc(100% - 60px));
    margin: auto;
}


/* SPACE BETWEEN HERO AND PRODUCTS */

.products-section {
    margin-top: 80px;
}

.products-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 55px;
}

.products-header h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 6vw, 76px);

    line-height: 0.92;

    font-weight: 500;

    letter-spacing: -2px;
}

.products-header h2 em {
    color: #c85d43;
}
.view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 16px 25px;

    background: transparent;
    color: #263528;

    border: 1px solid #263528;
    border-radius: 100px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;

    transition: 0.25s ease;
}

.view-all::after {
    content: "→";
    font-size: 17px;
}

.view-all:hover {
    background: #263528;
    color: #fffaf2;
    transform: translateY(-3px);
}

/* =========================================================
   PRODUCT GRID
========================================================= */

.products-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 22px;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    background: #fffdf8;

    width: 100%;

    overflow: hidden;
}


/* =========================================================
   PRODUCT PHOTO
========================================================= */

.product-photo {
    height: 300px;

    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;
}


/* PHOTO BACKGROUNDS */

.mango-photo {
    background: #e9dfc9;
}

.garlic-photo {
    background: #e5e8d9;
}

.lemon-photo {
    background: #eee6c8;
}

.chilli-photo {
    background: #e6d6c8;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-photo > a {
    width: 100%;
    height: 100%;

    display: flex;

    align-items: center;
    justify-content: center;
}

.product-image {
    width: 75%;
    height: 75%;

    object-fit: contain;
    object-position: center;

    padding: 0;

    display: block;

    transition: transform 0.35s ease;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}


/* =========================================================
   PRODUCT TAGS
========================================================= */

.product-tag {
    position: absolute;

    top: 16px;
    left: 16px;

    z-index: 10;

    padding: 8px 14px;

    color: white;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;

    border-radius: 4px;
}


/* BESTSELLER */

.tag-bestseller {
    background: #c85d43;
}


/* NEW ADDITION */

.tag-new-addition {
    background: #6f8f5f;
}


/* NEW */

.tag-new {
    background: #6f8f5f;
}


/* SIGNATURE */

.tag-signature {
    background: #b88a44;
}


/* ZESTY */

.tag-zesty {
    background: #d49b3a;
}


/* SPICY */

.tag-spicy {
    background: #a83f32;
}


/* SALE */

.tag-sale {
    background: #8b4d68;
}


/* LIMITED */

.tag-limited {
    background: #5d6f85;
}


/* =========================================================
   PRODUCT INFO
========================================================= */

.product-info {
    padding: 22px;
}

.product-category {
    font-size: 8px;

    letter-spacing: 2px;

    color: #c85d43;

    font-weight: 700;
}

.product-info h3 {
    font-family: "Playfair Display", serif;

    font-size: 27px;

    font-weight: 600;

    margin-top: 8px;
}

.product-info p {
    margin-top: 8px;

    color: #747b71;

    font-size: 12px;

    line-height: 1.6;
}

.product-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 20px;
}

.product-bottom strong {
    font-size: 17px;
}


/* ADD TO CART */

.add-cart {
    border: 1px solid #263528;

    background: transparent;

    padding: 9px 12px;

    font-size: 8px;

    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition: 0.2s ease;
}

.add-cart:hover {
    background: #263528;
    color: white;
}


/* =========================================================
   STORY
========================================================= */

.story {
    padding: 150px 20px;

    background: #263528;

    color: #faf6ed;

    text-align: center;
}

.story-container {
    max-width: 720px;

    margin: auto;
}

.story .eyebrow {
    color: #e9bd58;
}

.story h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 6vw, 78px);

    line-height: 0.95;

    font-weight: 500;
}

.story h2 em {
    color: #e9bd58;
}

.story p {
    max-width: 600px;

    margin: 30px auto 0;

    color: #cdd2c9;

    line-height: 1.8;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: #1d281f;

    color: #faf6ed;

    padding: 55px 0 25px;
}

.footer-container {
    width: min(1200px, calc(100% - 60px));

    margin: auto;

    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}

.footer-brand p {
    margin-top: 8px;

    color: #aeb5aa;

    font-size: 12px;
}

.footer-links {
    display: flex;

    gap: 30px;

    font-size: 12px;
}

.footer-links a:hover {
    color: #e9bd58;
}

.footer-bottom {
    width: min(1200px, calc(100% - 60px));

    margin: 45px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.1);

    color: #8f978d;

    font-size: 10px;
}


/* =========================================================
   SHOP PAGE
========================================================= */

.shop-page {
    padding: 160px 0 100px;

    min-height: 100vh;
}

.shop-container {
    width: min(1200px, calc(100% - 60px));

    margin: auto;

    padding-bottom: 80px;
}

.shop-heading {
    margin-bottom: 60px;
}

.shop-heading h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 7vw, 85px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -3px;
}

.shop-heading h1 em {
    color: #c85d43;
}

.shop-heading p {
    margin-top: 20px;

    color: #70776d;
}


/* SHOP GRID */

.shop-page .products-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}


/* SHOP PRODUCT IMAGE */

.shop-page .product-photo {
    height: 350px;

    background: #e9dfc9;
}

.shop-page .product-image {
    width: 78%;
    height: 78%;

    object-fit: contain;

    padding: 0;
}

.shop-page .product-info {
    padding: 25px;
}


/* =========================================================
   PRODUCT DETAIL PAGE
========================================================= */

.product-page {
    padding: 150px 60px 100px;

    background: #f8f4eb;

    min-height: 100vh;
}

.product-page-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


/* PRODUCT DETAIL IMAGE */

.product-page-image {
    width: 100%;

    height: 650px;

    background: #e9dfc9;

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.product-page-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 30px;

    display: block;
}


/* PRODUCT DETAIL INFO */

.product-page-info {
    padding: 20px 0;
}

.product-page-info .eyebrow {
    margin-bottom: 25px;
}

.product-page-info h1 {
    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(55px, 6vw, 85px);

    font-weight: 500;

    line-height: 0.95;

    letter-spacing: -3px;

    color: #203528;

    margin: 0 0 25px;
}

.product-price {
    font-size: 24px;

    font-weight: 600;

    color: #203528;

    margin-bottom: 25px;
}

.product-description {
    max-width: 500px;

    color: #70776d;

    font-size: 17px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* PRODUCT DETAIL CART BUTTON */

.product-add-cart {
    width: 100%;

    max-width: 420px;

    padding: 18px 25px;

    border: none;

    background: #c85d43;

    color: #ffffff;

    font-family: "DM Sans", sans-serif;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2px;

    cursor: pointer;

    transition: 0.2s ease;
}

.product-add-cart:hover {
    background: #203528;
}


/* PRODUCT DETAILS */

.product-details {
    margin-top: 45px;

    max-width: 600px;

    border-top: 1px solid rgba(32, 53, 40, 0.2);
}

.detail-row {
    padding: 18px 0;

    border-bottom: 1px solid rgba(32, 53, 40, 0.2);

    display: flex;

    justify-content: space-between;

    gap: 30px;
}

.detail-row span {
    color: #70776d;

    font-size: 13px;
}

.detail-row strong {
    max-width: 65%;

    text-align: right;

    color: #203528;

    font-size: 13px;

    font-weight: 500;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1000px) {

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-page .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-page-container {
        gap: 45px;
    }
}


@media (max-width: 800px) {

    /* HEADER */

    .nav-container {
        width: calc(100% - 35px);
    }

    .nav {
        display: none;
    }

    .cart {
        width: auto;
    }


    /* HERO */

    .hero-container {
        width: calc(100% - 35px);

        grid-template-columns: 1fr;

        padding-top: 70px;

        text-align: center;
    }

    .hero-content {
        padding-top: 50px;
    }

    .hero h1 {
        font-size: 54px;

        letter-spacing: -2px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .pickle-circle {
        width: 350px;
        height: 350px;
    }


    /* PRODUCTS */

    .products-section {
        margin-top: 40px;

        padding: 90px 0;
    }

    .products-container {
        width: calc(100% - 35px);
    }

    .products-header {
        display: block;

        margin-bottom: 40px;
    }

    .view-all {
        display: inline-block;

        margin-top: 25px;
    }


    /* SHOP */

    .shop-page {
        padding: 120px 0 70px;
    }

    .shop-container {
        width: calc(100% - 35px);
    }

    .shop-heading {
        margin-bottom: 40px;
    }

    .shop-page .products-grid {
        grid-template-columns: 1fr;
    }

    .shop-page .product-photo {
        height: 330px;
    }


    /* STORY */

    .story {
        padding: 100px 20px;
    }


    /* FOOTER */

    .footer-container {
        flex-direction: column;

        gap: 30px;
    }

    .footer-links {
        flex-wrap: wrap;
    }


    /* PRODUCT PAGE */

    .product-page {
        padding: 120px 20px 70px;
    }

    .product-page-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .product-page-image {
        height: 500px;
    }

    .product-page-info h1 {
        font-size: 55px;

        letter-spacing: -2px;
    }
}


@media (max-width: 600px) {

    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-photo {
        height: 320px;
    }

    .product-image {
        width: 78%;
        height: 78%;
    }

    .hero h1 {
        font-size: 48px;
    }

    .pickle-circle {
        width: 300px;
        height: 300px;
    }

    .pickle-label {
        width: 145px;
        height: 145px;
    }

    .pickle-label strong {
        font-size: 24px;
    }

    .footer-bottom {
        width: calc(100% - 35px);
    }
}

/* =========================================
   CART PAGE
========================================= */

.cart-page {
    min-height: 100vh;
    background: #f8f4eb;
    padding: 150px 0 100px;
}

.cart-container {
    width: min(1200px, calc(100% - 60px));
    margin: 0 auto;
}


/* HEADER */

.cart-heading {
    margin-bottom: 65px;
}

.cart-heading h1 {
    margin: 12px 0 18px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: clamp(60px, 7vw, 100px);

    line-height: .9;

    font-weight: 500;

    color: #203528;

    letter-spacing: -4px;
}

.cart-heading h1 em {
    color: #c85d43;
    font-weight: 500;
}

.cart-heading p {
    color: #70776d;

    font-size: 15px;

    max-width: 450px;

    line-height: 1.7;
}


/* EMPTY CART */

.empty-cart {
    max-width: 650px;

    margin: 20px auto 0;

    padding: 80px 40px;

    text-align: center;

    background: #eee7d8;

    border-radius: 24px;
}

.empty-cart-icon {
    font-size: 55px;

    margin-bottom: 25px;
}

.empty-cart h2 {
    margin: 15px 0;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 45px;

    font-weight: 500;

    color: #203528;
}

.empty-cart p {
    max-width: 400px;

    margin: 0 auto 30px;

    color: #70776d;

    line-height: 1.7;
}

.cart-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 17px 30px;

    background: #c85d43;

    color: white;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

    border-radius: 100px;

    transition: .2s ease;
}

.cart-button:hover {
    background: #203528;
}


/* CART LAYOUT */

.cart-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 380px;

    gap: 70px;

    align-items: start;
}


/* ITEMS HEADER */

.cart-items-top {
    display: flex;

    justify-content: space-between;

    padding-bottom: 18px;

    border-bottom: 1px solid rgba(32, 53, 40, .18);

    color: #70776d;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


/* PRODUCT ITEM */

.cart-item {
    display: grid;

    grid-template-columns: minmax(0, 1fr) auto 100px;

    align-items: center;

    gap: 25px;

    padding: 25px 0;

    border-bottom: 1px solid rgba(32, 53, 40, .12);
}


/* PRODUCT */

.cart-product {
    display: flex;

    align-items: center;

    gap: 25px;
}

.cart-image {
    width: 115px;

    height: 130px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #e8dfcd;

    border-radius: 16px;

    overflow: hidden;
}

.cart-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 10px;

    transition: transform .3s ease;
}

.cart-image:hover img {
    transform: scale(1.05);
}

.cart-details {
    min-width: 0;
}

.cart-category {
    display: block;

    margin-bottom: 8px;

    color: #8b927f;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.5px;
}

.cart-details h3 {
    margin: 0 0 7px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 25px;

    font-weight: 500;

    color: #203528;
}

.cart-details h3 a {
    color: inherit;

    text-decoration: none;
}

.cart-details p {
    margin: 0;

    color: #70776d;

    font-size: 14px;
}


/* QUANTITY */

.cart-quantity {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 7px 10px;

    border: 1px solid rgba(32, 53, 40, .18);

    border-radius: 100px;

    background: #fbf8f1;
}

.quantity-button {
    width: 28px;
    height: 28px;

    border: none;

    border-radius: 50%;

    background: transparent;

    color: #203528;

    font-size: 19px;

    cursor: pointer;
}

.quantity-button:hover {
    background: #e9dfce;
}

.cart-quantity span {
    min-width: 15px;

    text-align: center;

    font-size: 13px;

    font-weight: 600;

    color: #203528;
}


/* ITEM TOTAL */

.cart-total {
    text-align: right;

    color: #203528;

    font-size: 15px;

    font-weight: 600;
}


/* CONTINUE SHOPPING */

.continue-shopping {
    display: inline-block;

    margin-top: 28px;

    color: #203528;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    transition: .2s ease;
}

.continue-shopping:hover {
    color: #c85d43;
}


/* SUMMARY */

.cart-summary {
    position: sticky;

    top: 120px;

    padding: 35px;

    background: #203528;

    color: white;

    border-radius: 24px;
}

.summary-eyebrow {
    color: #c9c2af;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 2px;
}

.cart-summary h2 {
    margin: 13px 0 35px;

    font-family: "Playfair Display", Georgia, serif;

    font-size: 38px;

    line-height: 1;

    font-weight: 500;
}

.cart-summary h2 em {
    color: #d98268;

    font-weight: 500;
}


/* SUMMARY ROWS */

.summary-lines {
    border-top: 1px solid rgba(255,255,255,.15);
}

.summary-row {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.12);

    font-size: 13px;
}

.summary-muted {
    max-width: 170px;

    text-align: right;

    color: #aeb8ac;

    font-size: 11px;

    line-height: 1.4;
}


/* TOTAL */

.summary-total {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 25px;

    padding-top: 5px;
}

.summary-total span {
    color: #c9c2af;

    font-size: 12px;

    letter-spacing: 1px;
}

.summary-total strong {
    font-family: "Playfair Display", Georgia, serif;

    font-size: 30px;

    font-weight: 500;
}


/* CHECKOUT */

.checkout-button {
    display: flex;

    align-items: center;

    justify-content: space-between;

    width: 100%;

    margin-top: 28px;

    padding: 18px 22px;

    background: #c85d43;

    color: white;

    text-decoration: none;

    border-radius: 100px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;

    transition: .2s ease;
}

.checkout-button:hover {
    background: #e0785c;
}

.checkout-button span {
    font-size: 18px;

    line-height: 1;
}


/* LITTLE NOTE */

.cart-note {
    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.12);
}

.cart-note span {
    color: #d98268;

    font-size: 16px;
}

.cart-note p {
    margin: 0;

    color: #aeb8ac;

    font-size: 10px;

    line-height: 1.6;

    letter-spacing: .4px;
}


/* MOBILE */

@media (max-width: 900px) {

    .cart-page {
        padding: 120px 0 70px;
    }

    .cart-container {
        width: calc(100% - 35px);
    }

    .cart-layout {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .cart-summary {
        position: static;
    }

}


@media (max-width: 650px) {

    .cart-heading h1 {
        font-size: 65px;

        letter-spacing: -3px;
    }

    .cart-item {
        grid-template-columns: 1fr auto;

        gap: 15px;
    }

    .cart-product {
        grid-column: 1 / -1;
    }

    .cart-total {
        grid-column: 2;
        grid-row: 2;
    }

    .cart-quantity {
        grid-column: 1;
        grid-row: 2;

        justify-self: start;
    }

    .cart-image {
        width: 90px;
        height: 105px;
    }

    .cart-details h3 {
        font-size: 21px;
    }

    .cart-summary {
        padding: 28px;
    }

}

/* =========================================
   BIGGER HEADER
========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 95px;

    z-index: 9999;

    background: rgba(248, 244, 235, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(32, 53, 40, 0.08);
}

.nav-container {
    height: 95px;

    display: flex;
    align-items: center;
}


/* BIGGER LOGO */

.logo-name {
    font-size: 28px;
}

.logo-store {
    font-size: 10px;
    letter-spacing: 3px;
}


/* BIGGER NAV */

.nav {
    gap: 38px;
}

.nav a {
    font-size: 14px;
}


/* BIGGER CART */

.cart {
    display: flex;
    align-items: center;
    gap: 9px;

    font-size: 14px;
}

.cart svg {
    width: 25px;
    height: 25px;
}


/* CART NUMBER */

.cart-number {
    min-width: 22px;
    height: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c85d43;
    color: white;

    font-size: 10px;
    font-weight: 700;
}

/* =========================================
   CHECKOUT PAGE
========================================= */

.checkout-page {
    padding: 150px 0 100px;
    background: #f8f5ef;
    min-height: 100vh;
}

.checkout-container {
    width: min(1200px, 90%);
    margin: 0 auto;
}


/* =========================================
   CHECKOUT HEADING
========================================= */

.checkout-heading {
    margin-bottom: 60px;
    max-width: 700px;
}

.checkout-heading h1 {
    margin: 12px 0 15px;
    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1;
    color: #203528;
    font-weight: 500;
}

.checkout-heading h1 em {
    color: #c85d43;
    font-style: italic;
}

.checkout-heading p {
    color: #6d746d;
    font-size: 16px;
    line-height: 1.7;
}


/* =========================================
   CHECKOUT LAYOUT
========================================= */

.checkout-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.8fr);
    gap: 70px;
    align-items: start;
}


/* =========================================
   LEFT SIDE
========================================= */

.checkout-details {
    background: #fffdf8;
    border: 1px solid rgba(32, 53, 40, 0.08);
    border-radius: 24px;
    padding: 42px;
    box-shadow: 0 15px 50px rgba(32, 53, 40, 0.06);
}


/* =========================================
   SECTION HEADINGS
========================================= */

.checkout-section-heading {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 35px;
}

.checkout-section-heading > span {
    width: 38px;
    height: 38px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #203528;
    color: #fffdf8;

    font-size: 12px;
    font-weight: 700;
}

.checkout-section-heading h2 {
    margin: 0 0 5px;

    font-family: "Playfair Display", serif;
    font-size: 28px;
    font-weight: 500;

    color: #203528;
}

.checkout-section-heading p {
    margin: 0;

    color: #777d76;
    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   FORM
========================================= */

#checkoutForm {
    width: 100%;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;

    margin-bottom: 9px;

    color: #34443a;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.form-group label span {
    color: #999;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
}


.form-group input,
.form-group textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 15px 17px;

    border: 1px solid #ddd9d0;
    border-radius: 12px;

    background: #faf8f3;

    color: #203528;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.form-group input {
    height: 52px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}


.form-group input:focus,
.form-group textarea:focus {
    border-color: #c85d43;

    background: #fffdf8;

    box-shadow: 0 0 0 4px rgba(200, 93, 67, 0.08);
}


.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa9a2;
}


/* =========================================
   TWO COLUMN FORM ROW
========================================= */

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}


/* =========================================
   PAYMENT SECTION
========================================= */

.payment-heading {
    margin-top: 55px;
    padding-top: 45px;

    border-top: 1px solid #e7e3db;
}


.payment-card {
    margin-top: 10px;

    border: 1px solid #e2ded5;
    border-radius: 20px;

    background: #f5f1e8;

    overflow: hidden;
}


/* PAYMENT TOP */

.payment-card-top {
    padding: 24px 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid #e2ded5;
}

.payment-label {
    display: block;

    margin-bottom: 6px;

    color: #8a8d87;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.payment-card-top h3 {
    margin: 0;

    color: #203528;

    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 500;
}


.payment-badge {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c85d43;
    color: white;

    font-size: 11px;
    font-weight: 700;
}


/* PAYMENT CONTENT */

.payment-content {
    padding: 30px 26px;

    display: flex;
    align-items: center;
    gap: 30px;
}


/* QR */

.qr-placeholder {
    width: 190px;
    height: 190px;

    flex-shrink: 0;

    padding: 10px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;

    border-radius: 14px;

    border: 1px solid #ddd8ce;

    overflow: hidden;
}

.qr-placeholder img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;
}


/* PAYMENT TEXT */

.payment-instructions h3 {
    margin: 0 0 10px;

    color: #203528;

    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
}

.payment-instructions p {
    margin: 0 0 12px;

    color: #6f756f;

    font-size: 13px;
    line-height: 1.7;
}

.payment-instructions strong {
    color: #203528;
}


/* PAYMENT AMOUNT */

.payment-amount {
    padding: 20px 26px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #203528;

    color: #fffdf8;
}

.payment-amount span {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.75;
}

.payment-amount strong {
    font-family: "Playfair Display", serif;
    font-size: 25px;
    font-weight: 500;
}


/* =========================================
   PLACE ORDER
========================================= */

.place-order-button {
    width: 100%;

    margin-top: 28px;

    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border: none;
    border-radius: 13px;

    background: #c85d43;
    color: white;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.place-order-button:hover {
    background: #b94f36;

    transform: translateY(-2px);

    box-shadow: 0 10px 25px rgba(200, 93, 67, 0.2);
}

.place-order-button span:last-child {
    font-size: 20px;
}


.payment-note {
    margin: 14px 0 0;

    text-align: center;

    color: #999a94;

    font-size: 11px;
    line-height: 1.5;
}


/* =========================================
   RIGHT — ORDER SUMMARY
========================================= */

.checkout-summary {
    position: sticky;
    top: 125px;

    padding: 32px;

    border-radius: 24px;

    background: #203528;
    color: #fffdf8;

    box-shadow: 0 20px 50px rgba(32, 53, 40, 0.15);
}


.summary-eyebrow {
    color: #c7a98d;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 2px;
}


.checkout-summary h2 {
    margin: 10px 0 30px;

    font-family: "Playfair Display", serif;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 500;
}

.checkout-summary h2 em {
    color: #e5a28f;
}


/* =========================================
   CHECKOUT PRODUCTS
========================================= */

.checkout-products {
    display: flex;
    flex-direction: column;
    gap: 20px;

    padding-bottom: 25px;

    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.checkout-product {
    display: grid;

    grid-template-columns: 58px 1fr auto;

    gap: 14px;

    align-items: center;
}


.checkout-product-image {
    position: relative;

    width: 58px;
    height: 58px;

    border-radius: 12px;

    background: #f4f0e7;

    overflow: visible;
}

.checkout-product-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    border-radius: 12px;
}


.checkout-product-image > span {
    position: absolute;

    top: -7px;
    right: -7px;

    width: 20px;
    height: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c85d43;
    color: white;

    font-size: 10px;
    font-weight: 700;
}


.checkout-product-info h3 {
    margin: 0 0 4px;

    color: #fffdf8;

    font-family: "Playfair Display", serif;
    font-size: 16px;
    font-weight: 500;
}

.checkout-product-info p {
    margin: 0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 12px;
}


.checkout-product > strong {
    color: #fffdf8;

    font-size: 13px;
    font-weight: 600;
}


/* =========================================
   TOTAL
========================================= */

.checkout-total {
    padding: 25px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-total span {
    color: rgba(255, 255, 255, 0.65);

    font-size: 13px;
}

.checkout-total strong {
    color: #fffdf8;

    font-family: "Playfair Display", serif;
    font-size: 30px;
    font-weight: 500;
}


/* =========================================
   BACK TO CART
========================================= */

.back-to-cart {
    display: inline-block;

    color: #d9b8a9;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;

    transition: color 0.2s ease;
}

.back-to-cart:hover {
    color: white;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 900px) {

    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .checkout-summary {
        position: static;
        order: -1;
    }

}


@media (max-width: 600px) {

    .checkout-page {
        padding: 125px 0 70px;
    }

    .checkout-container {
        width: 92%;
    }

    .checkout-heading {
        margin-bottom: 35px;
    }

    .checkout-heading h1 {
        font-size: 44px;
    }

    .checkout-details {
        padding: 25px 20px;
        border-radius: 18px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .payment-content {
        flex-direction: column;
        text-align: center;
    }

    .qr-placeholder {
        width: 210px;
        height: 210px;
    }

    .payment-card-top {
        padding: 20px;
    }

    .payment-content {
        padding: 25px 20px;
    }

    .payment-amount {
        padding: 18px 20px;
    }

    .checkout-summary {
        padding: 25px 20px;
        border-radius: 18px;
    }

}
.pickle-values {
    padding: 100px 8%;
    background: #f6f0e6;
    color: #2d2a26;
}

.pickle-values .products-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
}

.pickle-values h2 {
    color: #2d2a26;
}

.pickle-values h2 em {
    color: #a83f32;
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 55px;
}


.value-card {
    min-height: 280px;
    padding: 32px;

    border-radius: 14px;

    display: flex;
    flex-direction: column;
    justify-content: flex-end;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(50, 40, 30, 0.18);
}


.value-number {
    margin-bottom: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;

    opacity: 0.75;
}


.value-card h3 {
    margin: 0 0 12px;

    font-size: 25px;
    color: #fffaf2;
}


.value-card p {
    margin: 0;

    color: rgba(255, 250, 242, 0.88);

    font-size: 15px;
    line-height: 1.7;
}


/* CARD COLORS */

.card-red {
    background: #c85d43;
}

.card-green {
    background: #6f8f5f;
}

.card-orange {
    background: #d49b3a;
}

.card-gold {
    background: #b88a44;
}


/* TABLET */

@media (max-width: 1000px) {

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .pickle-values {
        padding: 70px 6%;
    }

    .pickle-values .products-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================
   RECEIPT PAGE
========================================= */

.receipt-page {
    min-height: 100vh;
    padding: 150px 0 100px;
    background: #f8f5ef;
}

.receipt-container {
    width: min(760px, 90%);
    margin: 0 auto;
}


/* =========================================
   INTRO
========================================= */

.receipt-intro {
    text-align: center;
    margin-bottom: 45px;
}

.receipt-check {
    width: 58px;
    height: 58px;
    margin: 0 auto 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #6f8f5f;
    color: white;

    font-size: 24px;
}

.receipt-intro h1 {
    margin: 12px 0 15px;

    color: #203528;

    font-family: "Playfair Display", serif;
    font-size: clamp(40px, 6vw, 62px);
    font-weight: 500;
    line-height: 1;
}

.receipt-intro h1 em {
    color: #c85d43;
    font-style: italic;
}

.receipt-intro p {
    max-width: 500px;
    margin: 0 auto;

    color: #777d76;

    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   RECEIPT CARD
========================================= */

.receipt-card {
    background: #fffdf8;

    border-radius: 24px;

    border: 1px solid rgba(32, 53, 40, 0.08);

    box-shadow:
        0 20px 60px rgba(32, 53, 40, 0.08);

    overflow: hidden;
}


/* =========================================
   RECEIPT TOP
========================================= */

.receipt-top {
    padding: 35px 38px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    border-bottom: 1px solid #e7e3db;
}

.receipt-top span {
    color: #8a8d87;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 2px;
}

.receipt-top h2 {
    margin: 7px 0 0;

    color: #203528;

    font-family: "Playfair Display", serif;
    font-size: 27px;
    font-weight: 500;
}

.receipt-order-number {
    text-align: right;
}

.receipt-order-number small {
    display: block;

    margin-bottom: 5px;

    color: #999;

    font-size: 9px;
    letter-spacing: 1.5px;
}

.receipt-order-number strong {
    color: #c85d43;

    font-size: 16px;
}


/* =========================================
   META
========================================= */

.receipt-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-bottom: 1px solid #e7e3db;
}

.receipt-meta > div {
    padding: 22px 38px;
}

.receipt-meta > div + div {
    border-left: 1px solid #e7e3db;
}

.receipt-meta span {
    display: block;

    margin-bottom: 6px;

    color: #999;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.receipt-meta strong {
    color: #203528;

    font-size: 13px;
}

.payment-pending {
    color: #c85d43 !important;
}


/* =========================================
   ITEMS
========================================= */

.receipt-items {
    padding: 30px 38px;
}

.receipt-items-heading {
    display: flex;
    justify-content: space-between;

    padding-bottom: 13px;

    color: #999;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;

    border-bottom: 1px solid #e7e3db;
}

.receipt-item {
    padding: 20px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    border-bottom: 1px solid #eeeae2;
}

.receipt-item:last-child {
    border-bottom: none;
}

.receipt-item h3 {
    margin: 0 0 5px;

    color: #203528;

    font-family: "Playfair Display", serif;
    font-size: 17px;
    font-weight: 500;
}

.receipt-item p {
    margin: 0;

    color: #8b8d88;

    font-size: 12px;
}

.receipt-item > strong {
    color: #203528;

    font-size: 14px;
}


/* =========================================
   TOTAL
========================================= */

.receipt-total {
    padding: 25px 38px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: #203528;

    color: white;
}

.receipt-total span {
    color: rgba(255,255,255,0.65);

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;
}

.receipt-total strong {
    font-family: "Playfair Display", serif;

    font-size: 30px;

    font-weight: 500;
}


/* =========================================
   PAYMENT
========================================= */

.receipt-payment {
    margin: 30px 38px 0;
    padding: 22px;

    display: flex;
    align-items: flex-start;
    gap: 17px;

    background: #f5f1e8;

    border-radius: 14px;
}

.receipt-payment-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c85d43;
    color: white;

    font-size: 10px;
    font-weight: 700;
}

.receipt-payment h3 {
    margin: 0 0 6px;

    color: #203528;

    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
}

.receipt-payment p {
    margin: 0;

    color: #777d76;

    font-size: 12px;
    line-height: 1.6;
}


/* =========================================
   DELIVERY
========================================= */

.receipt-delivery {
    margin: 30px 38px 38px;
    padding-top: 28px;

    border-top: 1px solid #e7e3db;
}

.receipt-delivery > span {
    display: block;

    margin-bottom: 8px;

    color: #999;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.receipt-delivery > strong {
    display: block;

    margin-bottom: 5px;

    color: #203528;

    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 500;
}

.receipt-delivery p {
    margin: 0;

    color: #777d76;

    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   BUTTONS
========================================= */

.receipt-actions {
    margin-top: 30px;

    display: flex;
    gap: 12px;
}

.receipt-primary-button,
.receipt-secondary-button {
    flex: 1;

    padding: 17px;

    border-radius: 12px;

    text-align: center;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1px;

    text-decoration: none;

    transition: 0.2s ease;
}

.receipt-primary-button {
    background: #c85d43;
    color: white;
}

.receipt-primary-button:hover {
    background: #b94f36;
    transform: translateY(-2px);
}

.receipt-secondary-button {
    background: #203528;
    color: white;
}

.receipt-secondary-button:hover {
    background: #2b4636;
    transform: translateY(-2px);
}


/* =========================================
   FOOT NOTE
========================================= */

.receipt-thank-you {
    margin-top: 25px;

    text-align: center;

    color: #999;

    font-size: 11px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .receipt-page {
        padding: 125px 0 70px;
    }

    .receipt-container {
        width: 92%;
    }

    .receipt-top {
        padding: 27px 22px;
    }

    .receipt-top h2 {
        font-size: 23px;
    }

    .receipt-meta > div {
        padding: 18px 22px;
    }

    .receipt-items {
        padding: 25px 22px;
    }

    .receipt-total {
        padding: 22px;
    }

    .receipt-payment {
        margin-left: 22px;
        margin-right: 22px;
    }

    .receipt-delivery {
        margin-left: 22px;
        margin-right: 22px;
    }

    .receipt-actions {
        flex-direction: column;
    }

}
/* =========================================
   WHATSAPP-READY RECEIPT
========================================= */

.receipt-customer {
    display: grid;
    grid-template-columns: 1fr 1fr;

    border-bottom: 1px solid #e7e3db;
}

.receipt-customer > div {
    padding: 20px 38px;
}

.receipt-customer > div + div {
    border-left: 1px solid #e7e3db;
}

.receipt-customer span,
.receipt-location span,
.receipt-contact span,
.payment-status-label {
    display: block;

    margin-bottom: 6px;

    color: #999;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.receipt-customer strong {
    color: #203528;

    font-size: 14px;
}


/* =========================================
   LOCATION
========================================= */

.receipt-location {
    margin: 24px 38px;

    padding: 20px;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    background: #edf1e8;

    border: 1px solid #dbe3d5;

    border-radius: 15px;
}

.location-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #6f8f5f;

    border-radius: 50%;

    font-size: 18px;
}

.receipt-location strong {
    display: block;

    color: #203528;

    font-size: 15px;
    line-height: 1.5;
}

.receipt-location p {
    margin: 5px 0 0;

    color: #687067;

    font-size: 12px;
}


/* =========================================
   PAYMENT STATUS
========================================= */

.receipt-payment {
    margin: 25px 38px;

    padding: 20px;

    display: flex;
    align-items: flex-start;
    gap: 16px;

    background: #f5f1e8;

    border-radius: 15px;

    border: 1px solid #e4ded2;
}

.receipt-payment-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #c85d43;

    color: white;

    font-size: 10px;
    font-weight: 700;
}

.receipt-payment h3 {
    margin: 0 0 6px;

    color: #203528;

    font-family: "Playfair Display", serif;

    font-size: 18px;
    font-weight: 500;
}

.receipt-payment p {
    margin: 0;

    color: #777d76;

    font-size: 12px;

    line-height: 1.6;
}


/* =========================================
   WHATSAPP INSTRUCTION
========================================= */

.whatsapp-instruction {
    margin: 25px 38px;

    padding: 22px;

    display: flex;
    align-items: flex-start;
    gap: 17px;

    background: #6f8f5f;

    color: white;

    border-radius: 16px;

    box-shadow: 0 10px 25px rgba(111, 143, 95, 0.15);
}

.whatsapp-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: white;

    color: #6f8f5f;

    font-size: 10px;
    font-weight: 800;
}

.whatsapp-instruction span {
    display: block;

    margin-bottom: 5px;

    color: rgba(255,255,255,0.7);

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 1.5px;
}

.whatsapp-instruction h3 {
    margin: 0 0 7px;

    font-family: "Playfair Display", serif;

    font-size: 22px;
    font-weight: 500;
}

.whatsapp-instruction p {
    margin: 0 0 12px;

    max-width: 450px;

    color: rgba(255,255,255,0.85);

    font-size: 12px;

    line-height: 1.6;
}

.whatsapp-instruction strong {
    display: inline-block;

    padding: 8px 12px;

    background: white;

    border-radius: 7px;

    color: #49643d;

    font-size: 13px;
}


/* =========================================
   CUSTOMER CONTACT
========================================= */

.receipt-contact {
    margin: 25px 38px 35px;

    padding-top: 25px;

    border-top: 1px solid #e7e3db;
}

.receipt-contact strong {
    display: block;

    margin-top: 5px;

    color: #203528;

    font-size: 13px;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .receipt-customer {
        grid-template-columns: 1fr;
    }

    .receipt-customer > div {
        padding: 16px 22px;
    }

    .receipt-customer > div + div {
        border-left: none;

        border-top: 1px solid #e7e3db;
    }

    .receipt-location,
    .receipt-payment,
    .whatsapp-instruction {
        margin-left: 22px;
        margin-right: 22px;
    }

    .receipt-contact {
        margin-left: 22px;
        margin-right: 22px;
    }

}
.value-icon {
    position: absolute;

    top: 22px;
    right: 22px;

    width: 80px;
    height: 80px;

    transform: rotate(5deg);

    transition: transform 0.3s ease;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.value-icon:hover {
    transform: rotate(16deg) scale(1.08);
}
/* =========================================
   SHOP PAGE
========================================= */

.shop-heading {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
}

.shop-heading h1 {
    margin: 0;
}

.shop-heading p {
    margin-top: 15px;
}
@media (max-width: 600px) {

    .shop-heading {
        padding-top: 125px;
        padding-bottom: 35px;
    }

}
/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    padding: 8px;

    border: none;
    background: transparent;

    cursor: pointer;

    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;

    width: 24px;
    height: 2px;

    background: currentColor;

    transition: 0.25s ease;
}


/* =========================================
   MOBILE NAV
========================================= */

.mobile-menu {
    display: none;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    /* Hide desktop navigation */

    .nav {
        display: none;
    }


    /* Show hamburger */

    .menu-toggle {
        display: flex;
    }


    /* Mobile menu */

    .mobile-menu {
        position: fixed;

        top: 80px;
        left: 0;
        right: 0;

        z-index: 999;

        display: flex;

        flex-direction: column;

        padding: 15px 25px 25px;

        background: #faf6ed;

        border-bottom: 1px solid rgba(32, 53, 40, 0.1);

        box-shadow:
            0 15px 35px rgba(0, 0, 0, 0.08);

        transform: translateY(-120%);

        opacity: 0;

        pointer-events: none;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* OPEN */

    .mobile-menu.open {
        transform: translateY(0);

        opacity: 1;

        pointer-events: auto;
    }


    /* Links */

    .mobile-menu a {
        padding: 17px 5px;

        color: #203528;

        text-decoration: none;

        font-size: 14px;
        font-weight: 600;

        border-bottom: 1px solid rgba(32, 53, 40, 0.08);
    }


    .mobile-menu a:last-child {
        border-bottom: none;
    }


    .mobile-menu a:active {
        color: #c85d43;
    }


    /* Hamburger animation */

    .menu-toggle.active span:nth-child(1) {
        transform:
            translateY(7px)
            rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform:
            translateY(-7px)
            rotate(-45deg);
    }

}

/* =========================================
   WHATSAPP BUTTON
========================================= */

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    padding: 13px 20px;
    background: #263528;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    transition: all 0.25s ease;
}

.whatsapp-button:hover {
    background: #c85d43;
    transform: translateY(-1px);
}

@media (max-width: 600px) {

    .whatsapp-button {
        width: 100%;
        text-align: center;
    }

}

/* =========================================
   PAYMENT PROOF UPLOAD
========================================= */

.payment-proof {
    margin-top: 25px;
    padding: 24px;
    background: #faf6ed;
    border: 1px solid rgba(38, 53, 40, 0.12);
    border-radius: 18px;
}

/* Heading */

.payment-proof-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.payment-proof-heading span {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 600;
    color: #263528;
}

.payment-proof-heading small {
    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    color: #6f8f5f;
    letter-spacing: 0.5px;
}

/* Upload label */

.payment-proof label {
    display: block;
    margin-bottom: 5px;
    font-family: "DM Sans", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #263528;
}

/* Instruction */

.payment-proof-instruction {
    margin: 0 0 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    color: #6b7168;
}

/* File input */

.payment-proof input[type="file"] {
    width: 100%;
    padding: 11px;
    background: #ffffff;
    border: 1px dashed #6f8f5f;
    border-radius: 12px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    color: #263528;
    cursor: pointer;
    box-sizing: border-box;
}

.payment-proof input[type="file"]::file-selector-button {
    padding: 8px 14px;
    margin-right: 10px;
    background: #263528;
    color: #faf6ed;
    border: none;
    border-radius: 8px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    cursor: pointer;
}

/* General payment-proof text */

.payment-proof > p:not(.payment-proof-instruction) {
    margin-top: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    line-height: 1.5;
    color: #6b7168;
}

/* Screenshot preview */

#paymentPreviewContainer {
    margin-top: 18px;
    padding: 18px;
    background: #ffffff;
    border: 1px solid rgba(38, 53, 40, 0.1);
    border-radius: 14px;
}

#paymentPreviewContainer p {
    margin: 0 0 14px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
    color: #263528;
}

#paymentPreview {
    width: 100%;
    max-width: 320px;
    max-height: 420px;
    object-fit: contain;
    display: block;
    margin: 0 auto 18px;
    border-radius: 10px;
    border: 1px solid rgba(38, 53, 40, 0.12);
}

/* Confirm button */

#confirmPaymentProof {
    width: 100%;
    padding: 12px 18px;
    background: #6f8f5f;
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

#confirmPaymentProof:hover {
    opacity: 0.9;
}

#confirmPaymentProof:disabled {
    background: #263528;
    cursor: default;
}

/* Place order */

.place-order-button {
    margin-top: 18px;
}
/* =========================================
   CONTACT PAGE
========================================= */

.contact-page {
    background: #faf6ed;
    min-height: 100vh;
    padding: 70px 20px 90px;
}


/* =========================================
   CONTACT HERO
========================================= */

.contact-hero {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.contact-eyebrow {
    margin-bottom: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;

    color: #6f8f5f;
}

.contact-hero h1 {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(42px, 7vw, 72px);
    line-height: 1.05;
    font-weight: 500;

    color: #263528;
}

.contact-hero h1 em {
    font-weight: 400;
    color: #c85d43;
}

.contact-hero p {
    max-width: 520px;
    margin: 24px auto 0;

    font-family: "DM Sans", sans-serif;
    font-size: 14px;
    line-height: 1.7;

    color: #777b74;
}


/* =========================================
   CONTACT CONTENT
========================================= */

.contact-content {
    max-width: 900px;
    margin: 55px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}


/* =========================================
   CONTACT CARD
========================================= */

.contact-card {
    padding: 28px;

    background: #ffffff;

    border: 1px solid rgba(38, 53, 40, 0.08);
    border-radius: 18px;

    box-shadow:
        0 8px 30px rgba(38, 53, 40, 0.05);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 14px 35px rgba(38, 53, 40, 0.08);
}


/* =========================================
   CONTACT ICON
========================================= */

.contact-card-icon {
    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #263528;
    color: #faf6ed;

    font-family: "DM Sans", sans-serif;
    font-size: 11px;
    font-weight: 600;
}


/* =========================================
   CONTACT CARD TEXT
========================================= */

.contact-card-content span {
    display: block;
    margin-bottom: 7px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.4px;
    text-transform: uppercase;

    color: #6f8f5f;
}

.contact-card-content h2 {
    margin: 0 0 10px;

    font-family: "Playfair Display", serif;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 500;

    color: #263528;
}

.contact-card-content p {
    margin: 0;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.65;

    color: #777b74;
}


/* =========================================
   WHATSAPP BUTTON
========================================= */

.contact-button {
    display: inline-flex;
    align-items: center;

    margin-top: 22px;
    padding: 11px 15px;

    border-radius: 8px;

    background: #263528;
    color: #faf6ed;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-decoration: none;

    transition: opacity 0.2s ease;
}

.contact-button:hover {
    opacity: 0.88;
}


/* =========================================
   EMAIL LINK
========================================= */

.contact-link {
    display: inline-block;

    margin-top: 20px;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;

    color: #c85d43;

    text-decoration: none;

    word-break: break-word;
}

.contact-link:hover {
    text-decoration: underline;
}


/* =========================================
   SUPPORT HOURS
========================================= */

.contact-card-content small {
    display: block;

    margin-top: 14px;

    font-family: "DM Sans", sans-serif;
    font-size: 10px;
    line-height: 1.5;

    color: #999d96;
}


/* =========================================
   CONTACT NOTE
========================================= */

.contact-note {
    max-width: 900px;
    margin: 70px auto 0;

    padding: 55px 40px;

    background: #263528;

    border-radius: 22px;

    text-align: center;
}

.contact-note span {
    display: block;
    margin-bottom: 12px;

    font-family: "DM Sans", sans-serif;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 2px;

    color: #9caf91;
}

.contact-note h2 {
    margin: 0;

    font-family: "Playfair Display", serif;
    font-size: clamp(30px, 5vw, 48px);
    line-height: 1.15;
    font-weight: 400;

    color: #faf6ed;
}

.contact-note p {
    max-width: 520px;
    margin: 20px auto 0;

    font-family: "DM Sans", sans-serif;
    font-size: 12px;
    line-height: 1.7;

    color: rgba(250, 246, 237, 0.68);
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 800px) {

    .contact-page {
        padding: 55px 16px 70px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 14px;
        margin-top: 40px;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-note {
        margin-top: 45px;
        padding: 40px 25px;
        border-radius: 18px;
    }

}

@media (max-width: 480px) {

    .contact-hero h1 {
        font-size: 42px;
    }

    .contact-hero p {
        font-size: 13px;
    }

    .contact-card-content h2 {
        font-size: 23px;
    }

}