:root {
    --cream: #fbf7ee;
    --sage: #8ca84b;
    --sage-dark: #657d31;
    --ink: #2f3527;
    --muted: #747866;
    --white: #ffffff;
    --line: #e8e0d2;
    --shadow: 0 18px 45px rgba(53, 61, 39, 0.10);
}


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

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: var(--cream);
    color: var(--ink);
}

a {
    color: inherit;
}


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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;

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

    min-height: 96px;
    padding: 6px clamp(20px, 5vw, 70px);

    background: rgba(251, 247, 238, 0.96);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid var(--line);
}


/* Logo */

.brand {
    display: flex;
    align-items: center;

    margin-right: auto;

    text-decoration: none;
    flex-shrink: 0;
}

.brand .site-logo {
    display: block;
    width: 88px;
    height: 88px;
    object-fit: contain;
}


/* Navigation */

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

.site-nav a:hover {
    color: var(--sage-dark);
}


/* Cart + buttons */

.cart-link,
.button {
    display: inline-block;

    padding: 12px 18px;

    background: var(--sage-dark);
    color: white !important;

    border: 0;
    border-radius: 999px;

    text-decoration: none;

    cursor: pointer;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.cart-link:hover,
.button:hover {
    background: var(--sage);
    transform: translateY(-1px);
}


/* Mobile menu button */

.menu-toggle {
    display: none;

    border: 0;
    background: none;

    font-size: 24px;

    cursor: pointer;
}


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

.hero {
    min-height: 72vh;

    display: grid;
    place-items: center;

    text-align: center;

    padding: 80px 20px;

    background:
        radial-gradient(
            circle at 20% 20%,
            #ffffff 0 3%,
            transparent 25%
        ),
        var(--cream);
}

.hero-inner {
    max-width: 800px;
}

.eyebrow {
    text-transform: uppercase;

    letter-spacing: 0.18em;

    color: var(--sage-dark);

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

.hero h1 {
    margin: 18px 0;

    font-family: Georgia, serif;
    font-weight: 400;

    font-size: clamp(48px, 8vw, 92px);
    line-height: 0.98;
}

.hero p {
    max-width: 650px;

    margin: 0 auto 28px;

    color: var(--muted);

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


/* =========================
   GENERAL SECTIONS
========================= */

.section {
    padding: 80px clamp(20px, 6vw, 90px);
}

.section-heading {
    max-width: 700px;

    margin-bottom: 32px;
}

.section-heading h2 {
    margin: 0 0 10px;

    font-family: Georgia, serif;
    font-size: 44px;
    font-weight: 400;
}

.section-heading p {
    color: var(--muted);

    line-height: 1.7;
}


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

.product-grid {
    display: grid;

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

    gap: 24px;
}

.product-card {
    overflow: hidden;

    background: white;

    border: 1px solid var(--line);
    border-radius: 24px;

    box-shadow: var(--shadow);

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

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

    box-shadow:
        0 22px 55px rgba(53, 61, 39, 0.14);
}

.product-image {
    aspect-ratio: 1 / 1;

    display: grid;
    place-items: center;

    background: #f0eadf;

    color: var(--muted);
}

.product-card-content {
    padding: 22px;
}

.product-card h3 {
    margin: 0 0 8px;
}

.price {
    color: var(--sage-dark);

    font-weight: 800;
}


/* =========================
   INNER PAGE HERO
========================= */

.page-hero {
    padding:
        70px
        clamp(20px, 6vw, 90px)
        35px;
}

.page-hero h1 {
    margin: 0 0 12px;

    font-family: Georgia, serif;
    font-size: 58px;
    font-weight: 400;
}

.page-hero p {
    max-width: 700px;

    color: var(--muted);

    line-height: 1.7;
}


/* =========================
   CONTENT CARDS
========================= */

.content-card {
    max-width: 900px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 24px;

    box-shadow: var(--shadow);
}


/* =========================
   FORMS
========================= */

.form-grid {
    display: grid;

    gap: 16px;
}

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

    padding: 14px;

    background: white;

    border: 1px solid var(--line);
    border-radius: 12px;

    font: inherit;
}

.form-grid input:focus,
.form-grid textarea:focus,
.form-grid select:focus {
    outline: none;

    border-color: var(--sage);

    box-shadow:
        0 0 0 3px rgba(140, 168, 75, 0.15);
}


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

.site-footer {
    margin-top: 40px;
    background: #f3eddf;
    border-top: 1px solid var(--line);
    color: var(--ink);
}

.footer-main {
    max-width: 1500px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.5fr 0.7fr 0.7fr 1.1fr;
    gap: 70px;

    padding: 60px clamp(30px, 6vw, 90px) 50px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: 90px;
    height: 90px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0;
    max-width: 270px;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.footer-column h3 {
    margin: 0 0 10px;

    color: var(--ink);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-column a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;

    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: var(--sage-dark);
}

.footer-contact p {
    margin: 0 0 8px;
    max-width: 270px;

    color: var(--muted);
    font-size: 14px;
    line-height: 1.7;
}

.footer-contact a {
    color: var(--sage-dark);
    font-weight: 700;
}

.footer-location {
    color: var(--muted);
    font-size: 13px;
}

.footer-bottom {
    max-width: 1500px;
    margin: 0 auto;

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

    gap: 25px;

    padding: 20px clamp(30px, 6vw, 90px);

    border-top: 1px solid var(--line);

    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}

@media (max-width: 600px) {

    .footer-main {
        grid-template-columns: 1fr;
        padding-top: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

}


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

@media (max-width: 800px) {

    .site-header {
        min-height: 74px;

        padding: 7px 20px;
    }

    .brand .site-logo {
        width: 105px;
        height: 56px;
    }

    .menu-toggle {
        display: block;
    }

    .site-nav {
        display: none;

        position: absolute;

        top: 74px;
        left: 20px;
        right: 20px;

        flex-direction: column;
        align-items: stretch;

        padding: 20px;

        background: white;

        border: 1px solid var(--line);
        border-radius: 18px;

        box-shadow: var(--shadow);
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        padding: 8px 4px;
    }

    .cart-link {
        text-align: center;

        margin-top: 5px;
    }

    .hero {
        min-height: 65vh;

        padding: 65px 20px;
    }

    .hero h1 {
        font-size: clamp(44px, 13vw, 65px);
    }

    .hero p {
        font-size: 17px;
    }

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


    .page-hero h1 {
        font-size: 44px;
    }

}

/* =========================
   UPDATED HOME
========================= */

.hero {
    min-height: auto;
    display: block;
    padding:
        90px
        clamp(20px, 6vw, 100px);

    text-align: left;
}

.hero-shell {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.05fr 0.95fr;

    align-items: center;

    gap: clamp(50px, 7vw, 110px);
}

.hero-copy {
    max-width: 680px;
}

.hero h1 {
    margin: 18px 0 24px;

    font-size: clamp(54px, 6vw, 92px);
    line-height: 0.98;
}

.hero p {
    max-width: 590px;

    margin: 0 0 30px;

    font-size: 19px;
    line-height: 1.7;

    color: var(--muted);
}

.hero-actions {
    display: flex;
    align-items: center;

    gap: 22px;

    flex-wrap: wrap;
}

.text-link {
    color: var(--sage-dark);

    font-weight: 700;
    text-decoration: none;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
}

.hero-image-card {
    position: relative;

    width: min(100%, 520px);

    padding: 18px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 32px;

    box-shadow: var(--shadow);

    transform: rotate(2deg);
}

.hero-image-placeholder {
    aspect-ratio: 4 / 5;

    display: grid;
    place-items: center;

    padding: 30px;

    border-radius: 22px;

    background:
        linear-gradient(
            145deg,
            #f1eadf,
            #fffaf2
        );

    color: var(--muted);

    text-align: center;
    font-size: 15px;
}

.hero-image-label {
    position: absolute;

    left: 35px;
    bottom: 35px;

    padding: 10px 15px;

    background: rgba(255, 255, 255, 0.93);

    border-radius: 999px;

    color: var(--sage-dark);

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

    letter-spacing: 0.08em;
    text-transform: uppercase;
}


/* PRODUCT PREVIEW */

.shop-preview {
    padding-top: 40px;
}

.product-kicker {
    display: block;

    margin-bottom: 8px;

    color: var(--sage-dark);

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

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.product-card-content p {
    color: var(--muted);

    line-height: 1.6;
}

.product-link {
    display: inline-block;

    margin-top: 8px;

    color: var(--sage-dark);

    font-weight: 800;
    text-decoration: none;
}

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


/* STORY STRIP */

.story-strip {
    background: #f3eddf;
}

.story-strip-inner {
    max-width: 1300px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.1fr 0.9fr;

    align-items: center;

    gap: 60px;
}

.story-strip h2 {
    max-width: 650px;

    margin: 14px 0 0;

    font-family: Georgia, serif;
    font-size: clamp(38px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.05;
}

.story-strip p {
    margin: 0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.8;
}


/* CTA */

.cta-card {
    max-width: 1300px;

    margin: 0 auto;

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

    gap: 40px;

    padding: 45px 50px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 28px;

    box-shadow: var(--shadow);
}

.cta-card h2 {
    margin: 10px 0;

    font-family: Georgia, serif;
    font-size: 40px;
    font-weight: 400;
}

.cta-card p {
    margin: 0;

    color: var(--muted);

    line-height: 1.6;
}


/* MOBILE HOME */

@media (max-width: 900px) {

    .hero-shell {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .hero-copy {
        max-width: none;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .hero-image-card {
        width: min(100%, 480px);
    }

    .story-strip-inner {
        grid-template-columns: 1fr;

        gap: 25px;
    }

    .cta-card {
        flex-direction: column;
        align-items: flex-start;

        padding: 35px 28px;
    }

}

@media (max-width: 600px) {

    .hero {
        padding:
            65px
            20px;
    }

    .hero h1 {
        font-size: clamp(46px, 14vw, 64px);
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
    }

    .cta-card h2 {
        font-size: 34px;
    }

}

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

.shop-hero {
    padding-bottom: 55px;
}

.shop-section {
    padding-top: 25px;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-bottom: 55px;

    padding-bottom: 25px;

    border-bottom: 1px solid var(--line);
}

.shop-categories {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 10px;
}

.category-button {
    padding: 10px 16px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: transparent;

    color: var(--ink);

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

    cursor: pointer;

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

.category-button:hover,
.category-button.active {
    background: var(--sage-dark);

    border-color: var(--sage-dark);

    color: #ffffff;
}

.shop-sort {
    display: flex;
    align-items: center;

    gap: 10px;

    flex-shrink: 0;
}

.shop-sort label {
    color: var(--muted);

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

.shop-sort select {
    padding: 10px 34px 10px 13px;

    border: 1px solid var(--line);
    border-radius: 10px;

    background: #ffffff;

    color: var(--ink);

    font: inherit;

    cursor: pointer;
}

.shop-results-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 28px;
}

.shop-results-header h2 {
    margin: 0 0 8px;

    font-family: Georgia, serif;
    font-size: 38px;
    font-weight: 400;
}

.shop-results-header p {
    margin: 0;

    color: var(--muted);
}

.product-count {
    color: var(--muted);

    font-size: 14px;
}

.shop-product-grid .product-card {
    color: inherit;

    text-decoration: none;
}

.product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-top: 20px;
}

.product-arrow {
    display: grid;
    place-items: center;

    width: 36px;
    height: 36px;

    border-radius: 50%;

    background: #f3eddf;

    color: var(--sage-dark);

    font-size: 18px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease;
}

.product-card:hover .product-arrow {
    background: var(--sage-dark);

    color: white;

    transform: translateX(2px);
}


/* MOBILE SHOP */

@media (max-width: 800px) {

    .shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-sort {
        width: 100%;
    }

    .shop-sort select {
        flex: 1;
    }

    .shop-results-header {
        align-items: flex-start;
        flex-direction: column;

        gap: 10px;
    }

}

/* =========================
   ABOUT PAGE
========================= */

.about-hero {
    padding-bottom: 55px;
}

.about-intro {
    padding-top: 30px;
}

.about-grid {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;

    gap: clamp(50px, 7vw, 100px);
}

.about-image-placeholder {
    aspect-ratio: 4 / 5;

    display: grid;
    place-items: center;

    padding: 30px;

    background: #f0eadf;

    border: 1px solid var(--line);
    border-radius: 28px;

    color: var(--muted);

    text-align: center;

    box-shadow: var(--shadow);
}

.about-copy {
    max-width: 600px;
}

.about-copy h2 {
    margin: 12px 0 25px;

    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 62px);
    font-weight: 400;
    line-height: 1.05;
}

.about-copy p {
    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.about-note {
    margin-top: 28px;

    color: var(--sage-dark) !important;

    font-weight: 700;
}


/* VALUES */

.about-values {
    background: #f3eddf;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 22px;

    max-width: 1300px;
    margin: 0 auto;
}

.value-card {
    padding: 35px;

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

    border: 1px solid var(--line);
    border-radius: 22px;
}

.value-number {
    display: block;

    margin-bottom: 40px;

    color: var(--sage-dark);

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

    letter-spacing: 0.12em;
}

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

    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.value-card p {
    margin: 0;

    color: var(--muted);

    line-height: 1.7;
}


/* MOBILE ABOUT */

@media (max-width: 800px) {

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

    .about-image-placeholder {
        max-width: 500px;
    }

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

}

/* =========================
   FAQ PAGE
========================= */

.faq-hero {
    padding-bottom: 55px;
}

.faq-section {
    padding-top: 30px;
}

.faq-layout {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.75fr 1.25fr;

    gap: clamp(50px, 7vw, 100px);

    align-items: start;
}

.faq-intro {
    position: sticky;
    top: 130px;
}

.faq-intro h2 {
    margin: 12px 0 20px;

    font-family: Georgia, serif;
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 400;
    line-height: 1.05;
}

.faq-intro p {
    margin-bottom: 28px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-item {
    overflow: hidden;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 18px;

    box-shadow:
        0 10px 28px rgba(53, 61, 39, 0.06);
}

.faq-item summary {
    position: relative;

    padding: 22px 60px 22px 24px;

    list-style: none;

    cursor: pointer;

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

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";

    position: absolute;

    right: 24px;
    top: 50%;

    transform: translateY(-50%);

    color: var(--sage-dark);

    font-size: 26px;
    font-weight: 400;
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-answer {
    padding:
        0
        24px
        22px;
}

.faq-answer p {
    margin: 0;

    color: var(--muted);

    line-height: 1.7;
}


/* MOBILE FAQ */

@media (max-width: 850px) {

    .faq-layout {
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
    }

}

/* =========================
   CONTACT PAGE
========================= */

.contact-hero {
    padding-bottom: 55px;
}

.contact-section {
    padding-top: 30px;
}

.contact-layout {
    max-width: 1300px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 0.85fr 1.15fr;

    gap: clamp(50px, 7vw, 100px);

    align-items: start;
}


/* CONTACT INFORMATION */

.contact-info {
    padding-top: 20px;
}

.contact-info h2 {
    margin: 12px 0 22px;

    font-family: Georgia, serif;
    font-size: clamp(42px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.05;
}

.contact-info > p {
    max-width: 520px;

    margin-bottom: 40px;

    color: var(--muted);

    font-size: 17px;
    line-height: 1.8;
}

.contact-detail {
    padding: 20px 0;

    border-top: 1px solid var(--line);
}

.contact-label {
    display: block;

    margin-bottom: 7px;

    color: var(--muted);

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

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.contact-detail strong {
    font-size: 17px;
}

.contact-note {
    margin-top: 30px;

    padding: 24px;

    background: #f3eddf;

    border-radius: 18px;
}

.contact-note strong {
    color: var(--sage-dark);
}

.contact-note p {
    margin: 8px 0 0;

    color: var(--muted);

    line-height: 1.6;
}


/* CONTACT FORM */

.contact-form-card {
    padding: clamp(28px, 4vw, 45px);

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 26px;

    box-shadow: var(--shadow);
}

.contact-form-heading {
    margin-bottom: 30px;
}

.contact-form-heading h2 {
    margin: 0 0 8px;

    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

.contact-form-heading p {
    margin: 0;

    color: var(--muted);
}

.form-field label {
    display: block;

    margin-bottom: 8px;

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

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-submit {
    width: 100%;

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

.contact-form-note {
    display: block;

    text-align: center;

    color: var(--muted);

    line-height: 1.5;
}


/* MOBILE CONTACT */

@media (max-width: 850px) {

    .contact-layout {
        grid-template-columns: 1fr;
    }

}

/* =========================
   CONTACT FORM STATUS
========================= */

.contact-alert {
    margin-bottom: 22px;
    padding: 14px 16px;
    border-radius: 12px;
    line-height: 1.5;
}

.contact-alert-success {
    background: #e9f4df;
    color: #4f6728;
}

.contact-alert-error {
    background: #fdecec;
    color: #a32626;
}

.contact-honeypot {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

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

.site-footer {
    margin-top: 40px;

    background: #f3eddf;
    border-top: 1px solid var(--line);

    color: var(--ink);
}

.footer-main {
    max-width: 1600px;
    margin: 0 auto;

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

    gap: clamp(40px, 6vw, 100px);

    padding:
        65px
        clamp(30px, 6vw, 90px)
        55px;
}


/* BRAND */

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    display: inline-block;

    margin-bottom: 20px;
}

.footer-logo img {
    display: block;

    width: 95px;
    height: 95px;

    object-fit: contain;
}

.footer-brand p {
    max-width: 330px;

    margin: 0;

    color: var(--muted);

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


/* COLUMNS */

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 12px;
}

.footer-column h3 {
    margin: 0 0 10px;

    color: var(--ink);

    font-size: 13px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-column a {
    position: relative;

    color: var(--muted);

    font-size: 14px;

    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column a:hover {
    color: var(--sage-dark);

    transform: translateX(2px);
}


/* CONTACT */

.footer-contact p {
    max-width: 270px;

    margin: 0 0 5px;

    color: var(--muted);

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

.footer-contact a {
    color: var(--sage-dark);

    font-weight: 700;
}

.footer-location {
    color: var(--muted);

    font-size: 13px;
}


/* BOTTOM BAR */

.footer-bottom {
    max-width: 1600px;
    margin: 0 auto;

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

    gap: 25px;

    padding:
        22px
        clamp(30px, 6vw, 90px);

    border-top: 1px solid var(--line);

    color: var(--muted);

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

}


@media (max-width: 600px) {

    .footer-main {
        grid-template-columns: 1fr;

        padding-top: 45px;
    }

    .footer-brand {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;

        gap: 8px;
    }

}

/* =========================
   FOOTER SOCIAL BUTTON FIX
========================= */

.footer-social-buttons {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;

    margin: 12px 0 10px;
}

.footer-social-buttons .footer-social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;

    width: auto;

    padding: 10px 16px;

    background: var(--sage-dark);
    color: #ffffff !important;

    border: 1px solid var(--sage-dark);
    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;
    line-height: 1;

    text-decoration: none;

    cursor: pointer;

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

.footer-social-buttons .footer-social-button:hover {
    background: var(--sage);
    color: #ffffff !important;

    transform: translateY(-2px);

    box-shadow: 0 6px 16px rgba(53, 61, 39, 0.15);
}

.footer-button-icon {
    font-size: 14px;
    line-height: 1;
}

.footer-facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 18px;
    height: 18px;

    color: #ffffff;
}

.footer-facebook-icon svg {
    display: block;
    width: 16px;
    height: 16px;
}

/* =========================
   ANIMATED BOTANICAL BACKGROUND
========================= */

body {
    position: relative;
    overflow-x: hidden;
}


/* Layer over page backgrounds but under header */

.brand-background {
    position: fixed;
    inset: 0;

    z-index: 10;

    overflow: hidden;
    pointer-events: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
}


/* =========================
   LEAF SHAPE
========================= */

.floating-leaf {
    --leaf-scale: 1;

    position: absolute;

    width: 32px;
    height: 54px;

    border: 2px solid rgba(101, 125, 49, 0.18);

    border-radius:
        100% 0
        100% 0;

    opacity: 0;

    pointer-events: none;

    transform-origin: center;

    animation:
        botanicalFloat
        24s
        linear
        infinite;
}


/* Main leaf vein */

.floating-leaf::before {
    content: "";

    position: absolute;

    left: 50%;
    top: 7px;

    width: 1px;
    height: 41px;

    background: rgba(101, 125, 49, 0.16);

    transform:
        rotate(31deg);
}


/* Small secondary leaf */

.floating-leaf::after {
    content: "";

    position: absolute;

    left: -15px;
    top: 29px;

    width: 15px;
    height: 24px;

    border: 1.5px solid rgba(101, 125, 49, 0.16);

    border-radius:
        100% 0
        100% 0;

    transform:
        rotate(-45deg);
}


/* =========================
   LEAF POSITIONS
========================= */

.leaf-1  { --leaf-scale:.55; left:3%;  animation-duration:25s; animation-delay:-3s; }
.leaf-2  { --leaf-scale:.85; left:7%;  animation-duration:31s; animation-delay:-19s; }
.leaf-3  { --leaf-scale:.65; left:12%; animation-duration:27s; animation-delay:-11s; }
.leaf-4  { --leaf-scale:1.1; left:17%; animation-duration:34s; animation-delay:-27s; }

.leaf-5  { --leaf-scale:.5; left:22%; animation-duration:23s; animation-delay:-7s; }
.leaf-6  { --leaf-scale:.9; left:27%; animation-duration:30s; animation-delay:-21s; }
.leaf-7  { --leaf-scale:.7; left:32%; animation-duration:26s; animation-delay:-14s; }
.leaf-8  { --leaf-scale:1.15; left:37%; animation-duration:36s; animation-delay:-31s; }

.leaf-9  { --leaf-scale:.6; left:42%; animation-duration:24s; animation-delay:-9s; }
.leaf-10 { --leaf-scale:.95; left:47%; animation-duration:32s; animation-delay:-25s; }
.leaf-11 { --leaf-scale:.5; left:51%; animation-duration:22s; animation-delay:-16s; }
.leaf-12 { --leaf-scale:1.2; left:55%; animation-duration:37s; animation-delay:-33s; }

.leaf-13 { --leaf-scale:.65; left:59%; animation-duration:27s; animation-delay:-5s; }
.leaf-14 { --leaf-scale:.85; left:63%; animation-duration:31s; animation-delay:-23s; }
.leaf-15 { --leaf-scale:.55; left:67%; animation-duration:24s; animation-delay:-13s; }
.leaf-16 { --leaf-scale:1.05; left:71%; animation-duration:35s; animation-delay:-29s; }

.leaf-17 { --leaf-scale:.7; left:75%; animation-duration:28s; animation-delay:-8s; }
.leaf-18 { --leaf-scale:.9; left:79%; animation-duration:33s; animation-delay:-26s; }
.leaf-19 { --leaf-scale:.5; left:83%; animation-duration:23s; animation-delay:-17s; }
.leaf-20 { --leaf-scale:1.15; left:87%; animation-duration:38s; animation-delay:-34s; }

.leaf-21 { --leaf-scale:.6; left:90%; animation-duration:26s; animation-delay:-12s; }
.leaf-22 { --leaf-scale:.8; left:93%; animation-duration:30s; animation-delay:-22s; }
.leaf-23 { --leaf-scale:.5; left:96%; animation-duration:24s; animation-delay:-6s; }
.leaf-24 { --leaf-scale:1; left:98%; animation-duration:34s; animation-delay:-30s; }

.leaf-25 { --leaf-scale:.65; left:2%;  animation-duration:29s; animation-delay:-18s; }
.leaf-26 { --leaf-scale:.45; left:5%;  animation-duration:22s; animation-delay:-10s; }
.leaf-27 { --leaf-scale:1;   left:9%;  animation-duration:35s; animation-delay:-32s; }
.leaf-28 { --leaf-scale:.75; left:14%; animation-duration:28s; animation-delay:-20s; }

.leaf-29 { --leaf-scale:.55; left:19%; animation-duration:25s; animation-delay:-15s; }
.leaf-30 { --leaf-scale:1.1; left:24%; animation-duration:37s; animation-delay:-35s; }
.leaf-31 { --leaf-scale:.7;  left:29%; animation-duration:30s; animation-delay:-24s; }
.leaf-32 { --leaf-scale:.5;  left:34%; animation-duration:23s; animation-delay:-12s; }

.leaf-33 { --leaf-scale:.9;  left:39%; animation-duration:33s; animation-delay:-28s; }
.leaf-34 { --leaf-scale:.6;  left:44%; animation-duration:26s; animation-delay:-17s; }
.leaf-35 { --leaf-scale:1.2; left:49%; animation-duration:39s; animation-delay:-36s; }
.leaf-36 { --leaf-scale:.5;  left:53%; animation-duration:24s; animation-delay:-8s; }

.leaf-37 { --leaf-scale:.8;  left:58%; animation-duration:31s; animation-delay:-26s; }
.leaf-38 { --leaf-scale:.55; left:62%; animation-duration:25s; animation-delay:-14s; }
.leaf-39 { --leaf-scale:1.05;left:66%; animation-duration:36s; animation-delay:-33s; }
.leaf-40 { --leaf-scale:.7;  left:70%; animation-duration:28s; animation-delay:-21s; }

.leaf-41 { --leaf-scale:.45; left:74%; animation-duration:22s; animation-delay:-11s; }
.leaf-42 { --leaf-scale:.95; left:78%; animation-duration:34s; animation-delay:-30s; }
.leaf-43 { --leaf-scale:.6;  left:82%; animation-duration:27s; animation-delay:-19s; }
.leaf-44 { --leaf-scale:1.15;left:86%; animation-duration:38s; animation-delay:-37s; }

.leaf-45 { --leaf-scale:.5;  left:89%; animation-duration:24s; animation-delay:-13s; }
.leaf-46 { --leaf-scale:.85; left:92%; animation-duration:32s; animation-delay:-27s; }
.leaf-47 { --leaf-scale:.6;  left:95%; animation-duration:26s; animation-delay:-16s; }
.leaf-48 { --leaf-scale:1;   left:98%; animation-duration:35s; animation-delay:-31s; }

.leaf-49 { --leaf-scale:.55; left:4%;  animation-duration:28s; animation-delay:-18s; }
.leaf-50 { --leaf-scale:.8;  left:8%;  animation-duration:33s; animation-delay:-25s; }
.leaf-51 { --leaf-scale:.65; left:13%; animation-duration:26s; animation-delay:-9s; }
.leaf-52 { --leaf-scale:1.1; left:18%; animation-duration:36s; animation-delay:-31s; }

.leaf-53 { --leaf-scale:.5;  left:23%; animation-duration:24s; animation-delay:-12s; }
.leaf-54 { --leaf-scale:.9;  left:28%; animation-duration:32s; animation-delay:-27s; }
.leaf-55 { --leaf-scale:.7;  left:33%; animation-duration:29s; animation-delay:-20s; }
.leaf-56 { --leaf-scale:1.15;left:38%; animation-duration:38s; animation-delay:-35s; }

.leaf-57 { --leaf-scale:.6;  left:43%; animation-duration:25s; animation-delay:-14s; }
.leaf-58 { --leaf-scale:.95; left:48%; animation-duration:34s; animation-delay:-29s; }
.leaf-59 { --leaf-scale:.5;  left:52%; animation-duration:23s; animation-delay:-8s; }
.leaf-60 { --leaf-scale:1.2; left:56%; animation-duration:39s; animation-delay:-36s; }

.leaf-61 { --leaf-scale:.65; left:60%; animation-duration:27s; animation-delay:-16s; }
.leaf-62 { --leaf-scale:.85; left:64%; animation-duration:31s; animation-delay:-24s; }
.leaf-63 { --leaf-scale:.55; left:68%; animation-duration:24s; animation-delay:-11s; }
.leaf-64 { --leaf-scale:1.05;left:72%; animation-duration:35s; animation-delay:-32s; }

.leaf-65 { --leaf-scale:.7;  left:76%; animation-duration:28s; animation-delay:-17s; }
.leaf-66 { --leaf-scale:.9;  left:80%; animation-duration:33s; animation-delay:-26s; }
.leaf-67 { --leaf-scale:.5;  left:84%; animation-duration:22s; animation-delay:-10s; }
.leaf-68 { --leaf-scale:1.15;left:88%; animation-duration:37s; animation-delay:-34s; }

.leaf-69 { --leaf-scale:.6;  left:91%; animation-duration:26s; animation-delay:-13s; }
.leaf-70 { --leaf-scale:.8;  left:94%; animation-duration:30s; animation-delay:-22s; }
.leaf-71 { --leaf-scale:.5;  left:97%; animation-duration:24s; animation-delay:-7s; }
.leaf-72 { --leaf-scale:1;    left:99%; animation-duration:34s; animation-delay:-30s; }


/* Start all leaves below screen */

.floating-leaf {
    top: 105%;
}


/* =========================
   FLOATING ANIMATION
========================= */

@keyframes botanicalFloat {

    0% {
        transform:
            translate3d(0, 10vh, 0)
            rotate(-18deg)
            scale(var(--leaf-scale));

        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    30% {
        transform:
            translate3d(30px, -30vh, 0)
            rotate(12deg)
            scale(var(--leaf-scale));
    }

    55% {
        transform:
            translate3d(-20px, -65vh, 0)
            rotate(-8deg)
            scale(var(--leaf-scale));
    }

    80% {
        transform:
            translate3d(35px, -100vh, 0)
            rotate(18deg)
            scale(var(--leaf-scale));

        opacity: 1;
    }

    100% {
        transform:
            translate3d(-15px, -135vh, 0)
            rotate(32deg)
            scale(var(--leaf-scale));

        opacity: 0;
    }

}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {

    .floating-leaf {
        display: none;
    }

}

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

.product-image img,
.product-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.product-detail-card {
    max-width: 1150px;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 45px;

    align-items: start;
}

.product-detail-image {
    width: 100%;
    max-width: 520px;
}

.product-detail-price {
    margin-bottom: 24px;

    font-size: 24px;
}


/* =========================
   ADD TO CART MESSAGE
========================= */

#cart-message {
    min-height: 22px;

    color: var(--sage-dark);

    font-weight: 700;
}


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

.cart-item-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 18px 0;

    border-bottom: 1px solid var(--line);
}

.cart-item-row strong {
    display: block;

    margin-bottom: 6px;
}

.cart-remove-button {
    border: 0;

    background: transparent;

    color: var(--sage-dark);

    font: inherit;
    font-weight: 700;

    cursor: pointer;
}

.cart-remove-button:hover {
    color: var(--sage);
}


/* =========================
   MOBILE PRODUCT / CART
========================= */

@media (max-width: 800px) {

    .product-detail-grid {
        grid-template-columns: 1fr;
    }

    .cart-item-row {
        align-items: flex-start;
    }

}

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

.cart-hero {
    padding-bottom: 35px;
}

.cart-section {
    padding-top: 20px;
}

.cart-layout {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, .65fr);

    gap: 40px;

    align-items: start;
}


/* =========================
   CART PRODUCTS
========================= */

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

.cart-section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 22px;
}

.cart-section-heading h2 {
    margin: 0;

    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
}

#cart-page-count {
    color: var(--muted);

    font-size: 14px;
}


/* =========================
   CART ITEM
========================= */

.cart-item-row {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;

    gap: 22px;

    align-items: center;

    padding: 22px;

    margin-bottom: 16px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 22px;

    box-shadow:
        0 10px 30px rgba(53, 61, 39, 0.06);
}

.cart-item-image {
    width: 110px;
    height: 110px;

    display: grid;
    place-items: center;

    overflow: hidden;

    background: #f0eadf;

    border-radius: 16px;

    color: var(--muted);

    font-size: 12px;
    text-align: center;
}

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

    object-fit: cover;
}

.cart-item-info {
    min-width: 0;
}

.cart-item-category {
    display: block;

    margin-bottom: 6px;

    color: var(--sage-dark);

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

    text-transform: uppercase;
    letter-spacing: .1em;
}

.cart-item-name {
    display: block;

    margin-bottom: 8px;

    font-family: Georgia, serif;
    font-size: 23px;
    font-weight: 400;
}

.cart-item-price {
    color: var(--muted);

    font-size: 14px;
}


/* =========================
   CART ACTIONS
========================= */

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 14px;
}

.cart-line-total {
    color: var(--ink);

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

.cart-quantity-control {
    display: inline-flex;
    align-items: center;

    overflow: hidden;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: #ffffff;
}

.cart-qty-button {
    width: 36px;
    height: 36px;

    border: 0;

    background: transparent;

    color: var(--ink);

    font-size: 18px;

    cursor: pointer;
}

.cart-qty-button:hover {
    background: #f3eddf;

    color: var(--sage-dark);
}

.cart-qty-value {
    min-width: 34px;

    text-align: center;

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

.cart-remove-button {
    padding: 0;

    border: 0;

    background: transparent;

    color: var(--muted);

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

    cursor: pointer;

    text-decoration: underline;
    text-underline-offset: 3px;
}

.cart-remove-button:hover {
    color: #9f3f3f;
}


/* =========================
   SUMMARY CARD
========================= */

.cart-summary-card {
    position: sticky;
    top: 125px;

    padding: 30px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 24px;

    box-shadow: var(--shadow);
}

.cart-summary-card h2 {
    margin: 10px 0 28px;

    font-family: Georgia, serif;
    font-size: 34px;
    font-weight: 400;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 10px 0;
}

.summary-row.muted {
    color: var(--muted);

    font-size: 13px;
}

.summary-divider {
    height: 1px;

    margin: 18px 0;

    background: var(--line);
}

.summary-total {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;

    margin-bottom: 24px;

    font-size: 18px;
}

.summary-total strong {
    font-size: 21px;
}

.cart-checkout-button {
    width: 100%;

    text-align: center;
}

.cart-checkout-button:disabled {
    opacity: .7;

    cursor: not-allowed;
}

.cart-summary-note {
    margin: 18px 0;

    color: var(--muted);

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

.continue-shopping-link {
    color: var(--sage-dark);

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;
}

.continue-shopping-link:hover {
    text-decoration: underline;
}


/* =========================
   EMPTY CART
========================= */

.cart-empty-state {
    padding: 70px 30px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 24px;

    text-align: center;

    box-shadow:
        0 10px 30px rgba(53, 61, 39, 0.05);
}

.cart-empty-icon {
    margin-bottom: 15px;

    color: var(--sage);

    font-size: 45px;
}

.cart-empty-state h3 {
    margin: 0 0 10px;

    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.cart-empty-state p {
    margin: 0 0 25px;

    color: var(--muted);
}


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

@media (max-width: 950px) {

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

    .cart-summary-card {
        position: static;
    }

}

@media (max-width: 650px) {

    .cart-item-row {
        grid-template-columns: 85px 1fr;

        padding: 16px;
    }

    .cart-item-image {
        width: 85px;
        height: 85px;
    }

    .cart-item-actions {
        grid-column: 1 / -1;

        width: 100%;

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

    .cart-item-name {
        font-size: 20px;
    }

}

/* =========================
   ADMIN - SQUARE INTEGRATION
========================= */

.square-admin-card {
    max-width: 1050px;
    margin: 0 auto;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 24px;

    padding: 34px;

    box-shadow: var(--shadow);
}

.square-admin-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    padding-bottom: 28px;

    border-bottom: 1px solid var(--line);
}

.square-admin-kicker {
    display: block;

    margin-bottom: 8px;

    color: var(--sage-dark);

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

    text-transform: uppercase;
    letter-spacing: .14em;
}

.square-admin-header h2 {
    margin: 0 0 10px;

    font-family: Georgia, serif;
    font-size: 36px;
    font-weight: 400;
}

.square-admin-header p {
    max-width: 650px;

    margin: 0;

    color: var(--muted);
    line-height: 1.7;
}


/* STATUS */

.square-status-badge {
    display: inline-flex;
    align-items: center;

    gap: 8px;

    padding: 9px 14px;

    border-radius: 999px;

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

    white-space: nowrap;
}

.square-status-badge.connected {
    background: #edf6e8;
    color: #4f6d2d;
}

.square-status-badge.disconnected {
    background: #f7ecea;
    color: #8b4b43;
}

.square-status-dot {
    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: currentColor;
}


/* CONNECTION INFO */

.square-connection-info {
    padding: 24px 0;
}

.square-info-row {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 13px 0;

    border-bottom: 1px solid var(--line);
}

.square-info-row span {
    color: var(--muted);
    font-size: 13px;
}

.square-info-row strong {
    text-align: right;

    font-size: 13px;

    word-break: break-all;
}


/* ACTIONS */

.square-admin-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 12px;

    margin-top: 5px;
}

.square-secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 11px 18px;

    border: 1px solid var(--line);
    border-radius: 999px;

    background: #ffffff;

    color: var(--ink);

    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.square-secondary-button:hover {
    border-color: var(--sage-dark);

    color: var(--sage-dark);
}

.square-admin-note {
    margin: 18px 0 0;

    color: var(--muted);

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


/* EMPTY STATE */

.square-empty-state {
    padding: 55px 20px 35px;

    text-align: center;
}

.square-empty-icon {
    width: 60px;
    height: 60px;

    display: grid;
    place-items: center;

    margin: 0 auto 18px;

    background: #111111;

    color: #ffffff;

    border-radius: 14px;

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

.square-empty-state h3 {
    margin: 0 0 10px;

    font-family: Georgia, serif;
    font-size: 30px;
    font-weight: 400;
}

.square-empty-state p {
    max-width: 600px;

    margin: 0 auto 24px;

    color: var(--muted);

    line-height: 1.7;
}


/* MOBILE */

@media (max-width: 700px) {

    .square-admin-header {
        flex-direction: column;
    }

    .square-info-row {
        align-items: flex-start;
        flex-direction: column;

        gap: 6px;
    }

    .square-info-row strong {
        text-align: left;
    }

}

/* =========================
   CART FULFILLMENT
========================= */

.cart-fulfillment {
    margin: 22px 0 18px;
}

.cart-fulfillment-label {
    display: block;

    margin-bottom: 12px;

    color: var(--ink);

    font-size: 13px;
    font-weight: 800;
    line-height: 1.5;
}


/* PICKUP / SHIPPING CARDS */

.fulfillment-option {
    display: flex;
    align-items: flex-start;

    gap: 12px;

    width: 100%;

    margin-bottom: 10px;
    padding: 14px 15px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 14px;

    cursor: pointer;

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease,
        transform .2s ease;
}

.fulfillment-option:hover {
    border-color: var(--sage);

    transform: translateY(-1px);
}

.fulfillment-option:has(input:checked) {
    background: #f5f8ee;

    border-color: var(--sage-dark);

    box-shadow:
        0 0 0 2px rgba(101, 125, 49, .08);
}

.fulfillment-option input[type="radio"] {
    flex-shrink: 0;

    width: 17px;
    height: 17px;

    margin: 2px 0 0;

    accent-color: var(--sage-dark);

    cursor: pointer;
}

.fulfillment-option-content {
    display: flex;
    flex-direction: column;

    gap: 4px;
}

.fulfillment-option-content strong {
    color: var(--ink);

    font-size: 14px;
}

.fulfillment-option-content small {
    color: var(--muted);

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


/* =========================
   SHIPPING ADDRESS
========================= */

.shipping-address-section {
    margin: 8px 0 18px;
    padding: 18px;

    background: #faf7ef;

    border: 1px solid var(--line);
    border-radius: 16px;
}

.shipping-address-section[hidden] {
    display: none;
}

.shipping-address-heading {
    display: flex;
    flex-direction: column;

    gap: 4px;

    margin-bottom: 16px;
}

.shipping-address-heading strong {
    font-size: 14px;
}

.shipping-address-heading span {
    color: var(--muted);

    font-size: 12px;
}

.shipping-form-grid {
    display: grid;

    gap: 12px;
}

.shipping-form-grid label {
    display: grid;

    gap: 6px;

    color: var(--ink);

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

.shipping-form-grid input {
    width: 100%;

    padding: 11px 12px;

    background: #ffffff;

    border: 1px solid var(--line);
    border-radius: 10px;

    color: var(--ink);

    font: inherit;
    font-size: 13px;
}

.shipping-form-grid input:focus {
    outline: none;

    border-color: var(--sage);

    box-shadow:
        0 0 0 3px rgba(140, 168, 75, .12);
}

.shipping-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}


/* MOBILE */

@media (max-width: 500px) {

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

}

/* =========================
   CART MODIFIERS
========================= */

.cart-item-modifiers {
    display: grid;
    gap: 3px;

    margin: 0 0 7px;
}

.cart-item-modifier {
    color: var(--sage-dark);

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

.checkout-error {
    margin: 16px 0;
    padding: 14px 16px;

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

    background: #fff6e8;

    font-size: 0.95rem;
    line-height: 1.5;
}

.checkout-error strong {
    display: block;
    margin-bottom: 4px;
}

.checkout-error[hidden] {
    display: none;
}

.hero-image-placeholder {
    overflow: hidden;
}

.hero-product-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* =========================================================
   ADMIN DASHBOARD
   ========================================================= */

.admin-dashboard {
    min-height: 100vh;
    padding: 70px 24px;
    background: #f8f5ec;
}

.admin-dashboard-shell {
    width: min(1100px, 100%);
    margin: 0 auto;
}

.admin-dashboard-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 45px;
}

.admin-dashboard-header h1 {
    margin: 8px 0 10px;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1;
    color: #303727;
}

.admin-dashboard-header p {
    margin: 0;
    color: #746f5c;
    font-size: 17px;
}

.admin-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.admin-card {
    padding: 32px;
    background: #fff;
    border: 1px solid rgba(70, 78, 48, 0.12);
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(55, 60, 38, 0.07);
}

.admin-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.admin-card h2 {
    margin: 8px 0 15px;
    font-size: 32px;
    color: #303727;
}

.admin-card p {
    margin: 0 0 25px;
    color: #746f5c;
    line-height: 1.7;
}

.admin-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.admin-status.connected {
    background: #edf3df;
    color: #607c25;
}

.admin-status.disconnected {
    background: #f8e8e5;
    color: #a44d40;
}


/* =========================================================
   ADMIN LOGIN
   ========================================================= */

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 30px;
    background: #f8f5ec;
}

.admin-login-card {
    width: min(460px, 100%);
    padding: 42px;
    background: #fff;
    border: 1px solid rgba(70, 78, 48, 0.12);
    border-radius: 26px;
    box-shadow: 0 20px 55px rgba(55, 60, 38, 0.09);
}

.admin-login-card h1 {
    margin: 10px 0 28px;
    font-size: 42px;
    color: #303727;
}

.admin-login-form {
    display: grid;
    gap: 20px;
}

.admin-login-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: #303727;
}

.admin-login-form input {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #dcd8ca;
    border-radius: 12px;
    background: #fff;
    font: inherit;
}

.admin-login-form input:focus {
    outline: 2px solid rgba(103, 130, 44, 0.25);
    border-color: #687f2e;
}

.admin-login-error {
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #f8e8e5;
    color: #94493e;
}

@media (max-width: 700px) {

    .admin-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .admin-dashboard-header {
        flex-direction: column;
    }

    .admin-login-card {
        padding: 30px 24px;
    }

}

/* Admin destructive action button */

.admin-danger-button {
    background: #b94a42;
    color: #ffffff;
    border: none;
    cursor: pointer;
}

.admin-danger-button:hover {
    background: #9f3d36;
    color: #ffffff;
}

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

.site-footer {
    margin-top: 0;
    border-top: 1px solid rgba(92, 107, 47, 0.14);
}

.footer-main {
    max-width: 1380px;
    margin: 0 auto;
    padding: 58px 40px 48px;

    display: grid;
    grid-template-columns: 1.4fr 0.7fr 0.7fr 1fr;
    gap: 70px;
    align-items: start;
}


/* BRAND */

.footer-brand {
    max-width: 330px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img {
    display: block;
    width: 105px;
    height: 105px;
    object-fit: contain;
}

.footer-brand p {
    margin: 0;
    max-width: 310px;
    line-height: 1.75;
}


/* COLUMN HEADINGS */

.footer-column h3 {
    margin: 5px 0 20px;

    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}


/* FOOTER LINKS */

.footer-column > a {
    display: block;
    width: fit-content;
    margin-bottom: 11px;

    color: inherit;
    text-decoration: none;

    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.footer-column > a:hover {
    color: var(--green);
    transform: translateX(3px);
}


/* CONTACT */

.footer-contact p {
    max-width: 300px;
    margin: 0 0 22px;
    line-height: 1.65;
}

.footer-social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}

.footer-social-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 10px 17px;

    border-radius: 999px;

    text-decoration: none;
    font-weight: 700;

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

.footer-social-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.10);
}

.footer-button-icon,
.footer-facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-facebook-icon {
    width: 18px;
    height: 18px;

    border-radius: 50%;

    background: #ffffff;
    color: var(--green);

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

.footer-location {
    display: inline-block;
    margin-top: 2px;
    font-size: 0.9rem;
}


/* BOTTOM */

.footer-bottom {
    max-width: 1380px;
    margin: 0 auto;

    padding: 22px 40px 26px;

    border-top: 1px solid rgba(92, 107, 47, 0.14);

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

    font-size: 0.82rem;
}

.footer-tagline {
    opacity: 0.8;
}


/* MOBILE */

@media (max-width: 900px) {

    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 42px 50px;
        padding: 48px 28px 40px;
    }

}

@media (max-width: 600px) {

    .footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 42px 22px 34px;
    }

    .footer-brand {
        max-width: none;
    }

    .footer-bottom {
        padding: 20px 22px 24px;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

}

.footer-email-address {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: inherit;
    text-decoration: none;
    opacity: 0.8;
}

.footer-email-address:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Facebook footer icon fix */

.footer-social-button .footer-facebook-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 17px;
    height: 17px;

    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;

    color: #ffffff !important;
}

.footer-social-button .footer-facebook-icon svg {
    display: block;

    width: 17px;
    height: 17px;

    fill: currentColor;
}

/* =========================================================
   ADMIN CURRENT USER
   ========================================================= */

.admin-user-area {
    display: flex;
    align-items: center;
    gap: 18px;
}

.admin-current-user {
    font-size: 13px;
    color: var(--text-muted);
}

.admin-current-user strong {
    color: var(--sage-dark);
    font-weight: 700;
}

@media (max-width: 600px) {

    .admin-user-area {
        align-items: flex-end;
        flex-direction: column;
        gap: 6px;
    }

}

.admin-user-area .text-link::before {
    content: "·";
    margin-right: 10px;
    color: var(--text-muted);
}

/* =========================================================
   SERENITY-STYLE HEADER LAYOUT
   ========================================================= */

@media (min-width: 801px) {

    .site-header {
        display: grid;

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

        align-items: center;

        min-height: 92px;

        padding:
            0
            clamp(28px, 3vw, 55px);

        gap: 35px;
    }


    /* LOGO */

    .brand {
        margin-right: 0;

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

        width: 150px;
    }

    .brand .site-logo {
        width: 105px;
        height: 82px;

        object-fit: contain;
    }


    /* FULL-WIDTH NAVIGATION */

    .site-nav {
        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(5, minmax(80px, 1fr))
            auto;

        align-items: center;

        gap: clamp(18px, 2.2vw, 48px);
    }


    .site-nav > a:not(.cart-link) {
        display: flex;
        align-items: center;
        justify-content: center;

        padding: 34px 5px;

        text-align: center;

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


    /* CART BUTTON ON FAR RIGHT */

    .site-nav .cart-link {
        justify-self: end;

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

        gap: 4px;

        min-width: 84px;

        padding: 13px 19px;
    }

}

/* =========================================================
   SITE ANNOUNCEMENT
   ========================================================= */

.site-announcement {
    position: relative;
    z-index: 30;

    width: 100%;

    padding: 10px 20px;

    background: var(--sage-dark);
    color: #ffffff;
}

.site-announcement-inner {
    max-width: 1200px;
    margin: 0 auto;

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

    gap: 16px;

    text-align: center;
}

.site-announcement-message {
    font-size: 14px;
    font-weight: 700;
}

.site-announcement-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 8px 16px;

    background: #ffffff;
    color: var(--sage-dark);

    border-radius: 999px;

    font-size: 13px;
    font-weight: 800;

    text-decoration: none;

    transition:
        transform 0.2s ease,
        background 0.2s ease;
}

.site-announcement-button:hover {
    transform: translateY(-1px);
    background: #f4f1e8;
}

@media (max-width: 600px) {

    .site-announcement-inner {
        flex-direction: column;
        gap: 8px;
    }

}

/* =========================================================
   ADMIN ANNOUNCEMENT TOGGLE
   ========================================================= */

.announcement-toggle {
    display: flex;
    align-items: center;

    width: 100%;

    padding: 16px 18px;

    background: #f8f7f1;

    border: 1px solid rgba(40, 50, 30, 0.12);
    border-radius: 14px;

    cursor: pointer;
}

.announcement-toggle-text {
    display: flex;
    flex-direction: column;

    gap: 3px;

    margin-right: auto;
}

.announcement-toggle-text strong {
    font-size: 15px;
}

.announcement-toggle-text small {
    color: var(--text-soft);
    font-size: 13px;
}


/* Hide normal checkbox */

.announcement-toggle input {
    position: absolute;

    opacity: 0;
    pointer-events: none;
}


/* Toggle track */

.announcement-switch {
    position: relative;

    flex: 0 0 auto;

    width: 48px;
    height: 26px;

    background: #c8c8c0;

    border-radius: 999px;

    transition: background 0.2s ease;
}


/* Toggle circle */

.announcement-switch::after {
    content: "";

    position: absolute;

    top: 3px;
    left: 3px;

    width: 20px;
    height: 20px;

    background: #ffffff;

    border-radius: 50%;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.18);

    transition: transform 0.2s ease;
}


/* Enabled */

.announcement-toggle input:checked + .announcement-switch {
    background: var(--sage-dark);
}

.announcement-toggle input:checked + .announcement-switch::after {
    transform: translateX(22px);
}

.announcement-toggle {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
}

.announcement-toggle-text {
    margin-right: auto !important;
}

.announcement-switch {
    margin-left: 24px;
}