/* =========================================================
   HEALING HARVEST
   COMPLETE RESPONSIVE STYLESHEET
========================================================= */


/* =========================================================
   RESET
========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600&display=swap');
*,
*::before,
*::after {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
    width: 100%;
    overflow-x: hidden;
}


body {
    margin: 0;

    width: 100%;
    min-width: 0;

    overflow-x: hidden;

    font-family:
        "DM Sans",
        Arial,
        sans-serif;

    background: #f8f4e9;
    color: #26362b;

    line-height: 1.6;

    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}


img {
    display: block;
    max-width: 100%;
}


button,
input,
textarea,
select {
    font: inherit;
}


button {
    cursor: pointer;
}


a {
    color: inherit;
    text-decoration: none;
}


h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}


ul {
    margin: 0;
    padding: 0;
    list-style: none;
}


/* =========================================================
   VARIABLES
========================================================= */

:root {

    --cream: #f8f4e9;
    --cream-dark: #eee7d6;

    --green: #36513d;
    --green-dark: #263b2d;
    --green-light: #5f7965;

    --gold: #b98b4c;
    --gold-light: #d6b67b;

    --white: #ffffff;
    --text: #26362b;
    --muted: #68736a;

    --border: rgba(54, 81, 61, 0.14);

    --shadow:
        0 18px 50px rgba(35, 53, 40, 0.10);

    --radius: 24px;

    --container: 1180px;

}


/* =========================================================
   GLOBAL CONTAINER
========================================================= */

.container {
    width: min(
        calc(100% - 48px),
        var(--container)
    );

    margin-inline: auto;
}


.section {
    padding: 110px 0;
}


.section-heading {
    max-width: 720px;
    margin: 0 auto 60px;
    text-align: center;
}


.section-heading h2 {
    margin-bottom: 20px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        2.2rem,
        5vw,
        4rem
    );

    line-height: 1.1;
}


.section-heading h2 span {
    display: block;
    color: var(--green-light);
}


.section-heading p {
    max-width: 620px;
    margin: 0 auto;

    color: var(--muted);

    font-size: 1rem;
}


.eyebrow,
.section-tag {
    display: inline-block;

    margin-bottom: 16px;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 700;

    letter-spacing: 0.18em;
    text-transform: uppercase;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
    min-height: 52px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 13px 24px;

    border-radius: 999px;

    border: 1px solid transparent;

    font-weight: 700;

    transition:
        transform 0.2s ease,
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}


.btn:hover {
    transform: translateY(-2px);
}


.btn-primary {
    background: var(--green);
    color: var(--white);
}


.btn-primary:hover {
    background: var(--green-dark);
}


.btn-outline {
    background: transparent;
    color: var(--green);

    border-color: var(--green);
}


.btn-outline:hover {
    background: var(--green);
    color: var(--white);
}


/* =========================================================
   HEADER
========================================================= */

.header {
    position: sticky;
    top: 0;
    z-index: 1000;

    width: 100%;

    background: rgba(248, 244, 233, 0.94);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(16px);
}


.nav-container {
    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 28px;
}


.logo {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 12px;
}


.logo-symbol {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green);
    color: var(--white);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 1.35rem;
    font-weight: 700;
}


.logo-text {
    display: flex;
    flex-direction: column;
}


.logo-text strong {
    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 1.05rem;
    line-height: 1.1;
}


.logo-text small {
    margin-top: 4px;

    color: var(--gold);

    font-size: 0.56rem;
    font-weight: 700;

    letter-spacing: 0.13em;
}


.navbar {
    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 28px;
}


.nav-link {
    position: relative;

    padding: 8px 0;

    color: var(--muted);

    font-size: 0.9rem;
    font-weight: 600;
}


.nav-link:hover,
.nav-link.active {
    color: var(--green);
}


.cart-button {
    position: relative;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--white);
    color: var(--green);
}


.cart-count {
    position: absolute;

    top: -5px;
    right: -4px;

    min-width: 19px;
    height: 19px;

    display: grid;
    place-items: center;

    padding: 0 5px;

    border-radius: 999px;

    background: var(--gold);
    color: var(--white);

    font-size: 0.65rem;
    font-weight: 700;
}


.menu-button {
    display: none;

    width: 44px;
    height: 44px;

    padding: 9px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--white);
}


.menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    margin: 5px 0;

    background: var(--green);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    position: relative;

    overflow: hidden;

    padding: 80px 0 100px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(185, 139, 76, 0.14),
            transparent 30%
        );
}


.hero-container {
    min-height: 650px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.95fr);

    align-items: center;

    gap: 60px;
}


.hero-content {
    min-width: 0;
}


.hero-content h1 {
    max-width: 700px;

    margin-bottom: 25px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        3rem,
        6vw,
        5.8rem
    );

    line-height: 0.98;

    color: var(--green);
}


.hero-content h1 span {
    display: block;
    color: var(--green-light);
}


.hero-content > p {
    max-width: 590px;

    margin-bottom: 32px;

    color: var(--muted);

    font-size: 1.08rem;
}


.hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;
}


.hero-visual {
    min-width: 0;

    display: flex;

    align-items: center;
    justify-content: center;
}


.hero-image-wrapper {
    position: relative;

    width: min(
        100%,
        540px
    );

    aspect-ratio: 1 / 1;

    display: grid;
    place-items: center;
}


.hero-circle {
    position: absolute;

    inset: 5%;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            #eee5cf 0%,
            #e3d6b8 70%,
            #d5c59e 100%
        );

    box-shadow:
        0 25px 70px rgba(
            54,
            81,
            61,
            0.12
        );
}


.hero-image-space {
    position: relative;
    z-index: 2;

    width: 82%;
    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 50%;
}


.hero-real-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    border-radius: 50%;
}


/* =========================================================
   INTRO
========================================================= */

.intro {
    background: var(--white);
}


.intro-container {
    display: flex;

    justify-content: center;
}


.intro-text {
    max-width: 850px;

    text-align: center;
}


.intro-text h2 {
    margin-bottom: 25px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        2.2rem,
        5vw,
        4rem
    );

    line-height: 1.1;
}


.intro-text h2 span {
    color: var(--green-light);
}


.intro-text p {
    max-width: 760px;

    margin: 0 auto 18px;

    color: var(--muted);

    font-size: 1.02rem;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    background: var(--cream);
}


.products-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}


.product-card {
    min-width: 0;

    overflow: hidden;

    display: flex;

    flex-direction: column;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow:
        0 10px 30px rgba(
            35,
            53,
            40,
            0.05
        );

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}


.product-card:hover {
    transform: translateY(-5px);

    box-shadow: var(--shadow);
}


.product-image {
    position: relative;

    height: 330px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #f2ead8,
            #e9dfc8
        );
}


.product-badge {
    position: absolute;

    top: 18px;
    left: 18px;

    z-index: 3;

    max-width: calc(100% - 36px);

    padding: 7px 12px;

    border-radius: 999px;

    background: rgba(
        255,
        255,
        255,
        0.92
    );

    color: var(--green);

    font-size: 0.68rem;
    font-weight: 700;

    letter-spacing: 0.04em;
}


.product-photo {
    width: 100%;
    height: 100%;

    padding: 22px;

    object-fit: contain;
    object-position: center;

    transition:
        transform 0.35s ease;
}


.product-card:hover .product-photo {
    transform: scale(1.035);
}


.product-info {
    min-width: 0;

    flex: 1;

    display: flex;

    flex-direction: column;

    padding: 25px;
}


.product-category {
    margin-bottom: 9px;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.06em;
}


.product-info h3 {
    margin-bottom: 8px;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 1.5rem;

    line-height: 1.2;
}


.product-info > p {
    margin-bottom: 22px;

    color: var(--muted);

    font-size: 0.9rem;
}


.product-bottom {
    margin-top: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 14px;
}


.product-price {
    flex-shrink: 0;

    color: var(--green);

    font-size: 1.15rem;
    font-weight: 700;
}


.product-actions {
    min-width: 0;

    display: flex;

    align-items: center;

    gap: 7px;
}


.quick-view,
.add-cart {
    min-height: 38px;

    border-radius: 999px;

    padding: 8px 12px;

    font-size: 0.74rem;
    font-weight: 700;
}


.quick-view {
    border: 1px solid var(--border);

    background: var(--cream);
    color: var(--green);
}


.add-cart {
    border: 1px solid var(--green);

    background: var(--green);
    color: var(--white);
}


.quick-view:hover {
    background: var(--cream-dark);
}


.add-cart:hover {
    background: var(--green-dark);
}


/* =========================================================
   WHY US
========================================================= */

.why-us {
    background: var(--white);
}


.why-grid {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 24px;
}


.why-card {
    padding: 34px;

    text-align: center;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: var(--radius);
}


.why-icon {
    width: 64px;
    height: 64px;

    display: grid;
    place-items: center;

    margin: 0 auto 20px;

    border-radius: 50%;

    background: var(--white);

    font-size: 1.5rem;
}


.why-card h3 {
    margin-bottom: 10px;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 1.35rem;
}


.why-card p {
    margin: 0;

    color: var(--muted);

    font-size: 0.9rem;
}


/* =========================================================
   ABOUT
========================================================= */

.about {
    background: var(--cream);
}


.about-container {
    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    align-items: center;

    gap: 80px;
}


.about-visual {
    min-width: 0;

    display: flex;

    justify-content: center;
}


.about-image-space {
    width: min(
        100%,
        500px
    );

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border-radius: 28px;

    background: var(--cream-dark);

    box-shadow: var(--shadow);
}


.about-real-image {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


.about-content {
    min-width: 0;
}


.about-content h2 {
    margin-bottom: 25px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        2.3rem,
        4vw,
        4rem
    );

    line-height: 1.08;
}


.about-content h2 span {
    display: block;

    color: var(--green-light);
}


.about-content > p {
    max-width: 650px;

    margin-bottom: 17px;

    color: var(--muted);
}


.about-values {
    display: grid;

    gap: 16px;

    margin-top: 30px;
}


.about-value {
    display: flex;

    align-items: flex-start;

    gap: 14px;
}


.about-value > span {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green);

    color: var(--white);

    font-size: 0.75rem;
}


.about-value strong {
    display: block;

    margin-bottom: 3px;

    color: var(--green);
}


.about-value p {
    margin: 0;

    color: var(--muted);

    font-size: 0.85rem;
}


/* =========================================================
   CONTACT
========================================================= */

.contact {
    background: var(--white);
}


.contact-container {
    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(320px, 0.9fr);

    align-items: center;

    gap: 70px;
}


.contact-content {
    min-width: 0;
}


.contact-content h2 {
    margin-bottom: 20px;

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        2.5rem,
        5vw,
        4.5rem
    );

    line-height: 1.05;
}


.contact-content h2 span {
    display: block;

    color: var(--green-light);
}


.contact-content > p {
    max-width: 580px;

    margin-bottom: 28px;

    color: var(--muted);
}


.contact-card {
    min-width: 0;

    padding: 35px;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: var(--radius);

    box-shadow: var(--shadow);
}


.contact-card-icon {
    display: block;

    margin-bottom: 15px;

    font-size: 2rem;
}


.contact-card h3 {
    margin-bottom: 5px;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 1.8rem;
}


.contact-card > p {
    color: var(--muted);
}


.contact-details {
    display: grid;

    gap: 17px;

    margin-top: 25px;
}


.contact-detail {
    display: flex;

    flex-direction: column;

    gap: 2px;

    padding-bottom: 14px;

    border-bottom: 1px solid var(--border);
}


.contact-detail strong {
    color: var(--green);

    font-size: 0.82rem;
}


.contact-detail span,
.contact-detail a {
    color: var(--muted);

    font-size: 0.84rem;

    overflow-wrap: anywhere;
}


.contact-detail a:hover {
    color: var(--green);

    text-decoration: underline;
}


.contact-note {
    margin-top: 20px !important;

    font-size: 0.82rem;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    padding: 70px 0 25px;

    background: var(--green);

    color: rgba(
        255,
        255,
        255,
        0.78
    );
}


.footer .logo-text strong {
    color: var(--white);
}


.footer .logo-symbol {
    background: var(--white);
    color: var(--green);
}


.footer .logo-text small {
    color: var(--gold-light);
}


.footer-container {
    display: grid;

    grid-template-columns:
        minmax(240px, 0.8fr)
        minmax(0, 1.2fr);

    gap: 80px;
}


.footer-brand > p {
    max-width: 340px;

    margin-top: 20px;

    font-size: 0.88rem;
}


.footer-links {
    display: grid;

    grid-template-columns:
        repeat(
            3,
            minmax(0, 1fr)
        );

    gap: 35px;
}


.footer-links h4 {
    margin-bottom: 15px;

    color: var(--white);

    font-size: 0.85rem;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}


.footer-links a {
    display: block;

    margin-bottom: 9px;

    font-size: 0.82rem;
}


.footer-links a:hover {
    color: var(--white);
}


.footer-bottom {
    display: flex;

    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding-top: 20px;

    border-top: 1px solid rgba(
        255,
        255,
        255,
        0.14
    );

    font-size: 0.72rem;
}


/* =========================================================
   CART OVERLAY
========================================================= */

.cart-overlay {
    position: fixed;

    inset: 0;

    z-index: 1090;

    background: rgba(
        15,
        25,
        18,
        0.5
    );

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.cart-overlay.active {
    opacity: 1;

    visibility: visible;
}


/* =========================================================
   CART SIDEBAR
========================================================= */

.cart-sidebar {
    position: fixed;

    top: 0;
    right: 0;

    z-index: 1100;

    width: min(
        440px,
        100%
    );

    height: 100dvh;

    display: flex;

    flex-direction: column;

    background: var(--white);

    box-shadow:
        -20px 0 60px rgba(
            20,
            30,
            22,
            0.18
        );

    transform: translateX(100%);

    transition:
        transform 0.3s ease;
}


.cart-sidebar.active {
    transform: translateX(0);
}


.cart-header {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 25px;

    border-bottom: 1px solid var(--border);
}


.cart-header h3 {
    margin: 0;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: 1.7rem;
}


.close-cart,
.modal-close {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    border: 1px solid var(--border);
    border-radius: 50%;

    background: var(--cream);

    color: var(--green);

    font-size: 1.4rem;
}


.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 20px;
}


.empty-cart {
    min-height: 300px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;
}


.empty-cart-icon {
    margin-bottom: 15px;

    font-size: 2.5rem;
}


.empty-cart h4 {
    margin-bottom: 6px;

    color: var(--green);
}


.empty-cart p {
    margin: 0;

    color: var(--muted);

    font-size: 0.85rem;
}


/* =========================================================
   CART ITEMS
========================================================= */

.cart-item {
    display: grid;

    grid-template-columns: 80px minmax(0, 1fr);

    gap: 14px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}


.cart-item-image {
    width: 80px;
    height: 80px;

    overflow: hidden;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: var(--cream);
}


.cart-item-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    padding: 6px;
}


.cart-item-info {
    min-width: 0;
}


.cart-item-info h4 {
    margin-bottom: 4px;

    color: var(--green);

    font-size: 0.9rem;
}


.cart-item-info p {
    margin-bottom: 10px;

    color: var(--muted);

    font-size: 0.72rem;
}


.quantity-control {
    display: flex;

    align-items: center;

    gap: 10px;
}


.quantity-control button {
    width: 28px;
    height: 28px;

    border: 1px solid var(--border);

    border-radius: 50%;

    background: var(--cream);

    color: var(--green);

    font-weight: 700;
}


.quantity-control span {
    min-width: 20px;

    text-align: center;

    font-size: 0.8rem;
    font-weight: 700;
}


.remove-item {
    margin-top: 8px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #9b5e5e;

    font-size: 0.7rem;
}


.cart-item-price {
    grid-column: 2;

    color: var(--green);

    font-size: 0.9rem;
    font-weight: 700;
}


.cart-footer {
    padding: 20px 25px;

    border-top: 1px solid var(--border);

    background: var(--white);
}


.cart-total-row {
    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-bottom: 18px;

    color: var(--green);
}


.cart-total-row strong {
    font-size: 1.25rem;
}


.checkout-button {
    width: 100%;

    min-height: 52px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    border: 0;

    border-radius: 999px;

    background: var(--green);

    color: var(--white);

    font-weight: 700;
}


.checkout-button:hover {
    background: var(--green-dark);
}


.cart-note {
    display: block;

    margin-top: 10px;

    color: var(--muted);

    text-align: center;

    font-size: 0.68rem;
}


/* =========================================================
   PRODUCT MODAL
========================================================= */

.product-modal {
    position: fixed;

    inset: 0;

    z-index: 1200;

    display: flex;

    align-items: center;
    justify-content: center;

    padding: 25px;

    background: rgba(
        15,
        25,
        18,
        0.62
    );

    opacity: 0;

    visibility: hidden;

    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}


.product-modal.active {
    opacity: 1;

    visibility: visible;
}


.modal-content {
    position: relative;

    width: min(
        900px,
        100%
    );

    max-height: min(
        850px,
        calc(100dvh - 40px)
    );

    overflow-y: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(0, 1.1fr);

    background: var(--white);

    border-radius: 28px;

    box-shadow:
        0 30px 100px rgba(
            0,
            0,
            0,
            0.25
        );

    overflow-x: hidden;
}


.modal-close {
    position: absolute;

    top: 18px;
    right: 18px;

    z-index: 5;
}


.modal-product-image {
    min-width: 0;

    min-height: 450px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            145deg,
            #f2ead8,
            #e5dac0
        );

    overflow: hidden;
}


.modal-product-image img {
    width: 100%;
    height: 100%;

    max-height: 520px;

    object-fit: contain;
    object-position: center;

    padding: 35px;
}


.modal-product-info {
    min-width: 0;

    padding: 60px 45px 45px;
}


.modal-category {
    display: inline-block;

    margin-bottom: 10px;

    color: var(--gold);

    font-size: 0.72rem;
    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.07em;
}


.modal-product-info h2 {
    margin-bottom: 20px;

    color: var(--green);

    font-family:
        "Playfair Display",
        Georgia,
        serif;

    font-size: clamp(
        2rem,
        4vw,
        3.2rem
    );

    line-height: 1.1;
}


.modal-description {
    color: var(--muted);

    font-size: 0.92rem;
}


.modal-description strong {
    color: var(--green);
}


.modal-description ul {
    margin: 12px 0 18px 20px;

    list-style: disc;
}


.modal-description li {
    margin-bottom: 5px;
}


.modal-price {
    margin: 25px 0;

    color: var(--green);

    font-size: 1.6rem;
    font-weight: 700;
}


/* =========================================================
   BODY LOCK
========================================================= */

body.no-scroll {
    overflow: hidden;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
    opacity: 1;
    transform: none;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .section {
        padding: 85px 0;
    }


    .navbar {
        gap: 18px;
    }


    .hero-container {
        gap: 35px;
    }


    .hero-content h1 {
        font-size: clamp(
            2.8rem,
            7vw,
            4.8rem
        );
    }


    .products-grid {
        grid-template-columns:
            repeat(
                2,
                minmax(0, 1fr)
            );
    }


    .about-container {
        gap: 45px;
    }


    .contact-container {
        gap: 40px;
    }

}


/* =========================================================
   MOBILE NAV
========================================================= */

@media (max-width: 780px) {

    .container {
        width: min(
            calc(100% - 32px),
            var(--container)
        );
    }


    .nav-container {
        min-height: 72px;
    }


    .navbar {
        position: absolute;

        top: calc(100% + 1px);
        left: 0;
        right: 0;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 12px 16px 18px;

        background: var(--cream);

        border-bottom: 1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(
                35,
                53,
                40,
                0.08
            );
    }


    .navbar.active {
        display: flex;
    }


    .nav-link {
        padding: 13px 8px;
    }


    .menu-button {
        display: block;
    }


    .hero {
        padding: 55px 0 70px;
    }


    .hero-container {
        min-height: auto;

        grid-template-columns: 1fr;

        text-align: center;
    }


    .hero-content {
        display: flex;

        flex-direction: column;

        align-items: center;
    }


    .hero-content > p {
        font-size: 0.98rem;
    }


    .hero-buttons {
        justify-content: center;
    }


    .hero-visual {
        order: -1;
    }


    .hero-image-wrapper {
        width: min(
            440px,
            88vw
        );
    }


    .about-container,
    .contact-container {
        grid-template-columns: 1fr;
    }


    .about-visual {
        order: 0;
    }


    .about-content {
        order: 1;
    }


    .contact-card {
        max-width: 650px;
        width: 100%;

        margin: 0 auto;
    }


    .why-grid {
        grid-template-columns: 1fr;
    }


    .footer-container {
        grid-template-columns: 1fr;

        gap: 45px;
    }


    .footer-links {
        gap: 20px;
    }


    .modal-content {
        grid-template-columns: 1fr;

        width: min(
            620px,
            100%
        );
    }


    .modal-product-image {
        min-height: 300px;
    }


    .modal-product-image img {
        max-height: 330px;
    }


    .modal-product-info {
        padding: 35px 28px 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 560px) {

    .section {
        padding: 70px 0;
    }


    .container {
        width: calc(100% - 28px);
    }


    .logo-text strong {
        font-size: 0.95rem;
    }


    .logo-text small {
        font-size: 0.48rem;
    }


    .logo-symbol {
        width: 38px;
        height: 38px;
    }


    .cart-button,
    .menu-button {
        width: 40px;
        height: 40px;
    }


    .hero-content h1 {
        font-size: clamp(
            2.45rem,
            13vw,
            3.5rem
        );
    }


    .hero-buttons {
        width: 100%;

        flex-direction: column;

        align-items: stretch;
    }


    .hero-buttons .btn {
        width: 100%;
    }


    .hero-image-wrapper {
        width: min(
            340px,
            88vw
        );
    }


    .hero-image-space {
        width: 84%;
    }


    .products-grid {
        grid-template-columns: 1fr;
    }


    .product-image {
        height: 300px;
    }


    .product-info {
        padding: 21px;
    }


    .product-bottom {
        align-items: flex-start;

        flex-direction: column;
    }


    .product-actions {
        width: 100%;
    }


    .quick-view,
    .add-cart {
        flex: 1;

        min-width: 0;
    }


    .about-image-space {
        width: 100%;
    }


    .contact-card {
        padding: 25px 20px;
    }


    .footer-links {
        grid-template-columns: 1fr 1fr;
    }


    .footer-links > div:last-child {
        grid-column: 1 / -1;
    }


    .footer-bottom {
        flex-direction: column;

        gap: 5px;
    }


    .cart-sidebar {
        width: 100%;
    }


    .modal-product-image {
        min-height: 240px;
    }


    .modal-product-image img {
        max-height: 270px;

        padding: 18px;
    }


    .modal-product-info {
        padding: 30px 20px 25px;
    }


    .modal-product-info h2 {
        font-size: 2rem;
    }


    .product-modal {
        padding: 12px;
    }


    .modal-content {
        max-height: calc(100dvh - 24px);

        border-radius: 20px;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 360px) {

    .container {
        width: calc(100% - 22px);
    }


    .logo-text {
        display: none;
    }


    .hero-image-wrapper {
        width: 285px;
    }


    .product-image {
        height: 270px;
    }


    .footer-links {
        grid-template-columns: 1fr;
    }


    .footer-links > div:last-child {
        grid-column: auto;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        transition-duration: 0.01ms !important;
    }

}
.hero-image-wrapper {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-product-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 32px;
}
/* =========================================
   HEALING HARVEST — EDITORIAL HERO
========================================= */

.hero {
    width: 100%;
    min-height: 780px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f6ef;
    overflow: hidden;
    position: relative;
}


/* subtle decorative glow */

.hero::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(38, 82, 64, 0.045);
    top: -220px;
    right: -150px;
    pointer-events: none;
}


/* CONTENT */

.hero-container {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 100px 24px;
    box-sizing: border-box;
}

.hero-content {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
}


/* EYEBROW */

.hero-content .eyebrow {
    display: inline-block;
    margin-bottom: 32px;
    letter-spacing: 0.22em;
    font-size: 0.75rem;
}


/* MAIN HEADING */

.hero-title {
    margin: 0 auto;
    font-size: clamp(4.5rem, 9vw, 9rem);
    line-height: 0.88;
    letter-spacing: -0.055em;
    font-weight: 600;
}


/* EACH LINE */

.hero-line {
    display: block;
}


/* GREEN ACCENT */

.hero-accent {
    color: #2f6652;
    font-style: italic;
    font-weight: 500;
}


/* DESCRIPTION */

.hero-description {
    max-width: 610px;
    margin: 42px auto 38px;
    font-size: 1.08rem;
    line-height: 1.75;
}


/* BUTTONS */

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 900px) {

    .hero {
        min-height: 700px;
    }

    .hero-title {
        font-size: clamp(4rem, 10vw, 6.5rem);
    }

}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 600px) {

    .hero {
        min-height: auto;
    }

    .hero-container {
        padding: 80px 20px 75px;
    }

    .hero-content .eyebrow {
        font-size: 0.65rem;
        letter-spacing: 0.16em;
        margin-bottom: 25px;
    }

    .hero-title {
        font-size: clamp(3.4rem, 15vw, 5rem);
        line-height: 0.92;
        letter-spacing: -0.045em;
    }

    .hero-description {
        font-size: 0.98rem;
        line-height: 1.65;
        margin-top: 32px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 380px) {

    .hero-container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-title {
        font-size: 3.1rem;
    }

}
.brand-heading {
    width: 100%;
    text-align: center;
    padding: 70px 20px 45px;
    box-sizing: border-box;

    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(3.5rem, 8vw, 7rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.03em;

    color: #234f43;
    white-space: nowrap;
}

@media (max-width: 600px) {
    .brand-heading {
        font-size: clamp(3rem, 14vw, 5rem);
        padding: 45px 10px 30px;
    }
}
/* FIX HERO TOP EMPTY SPACE */

.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    min-height: auto !important;
}

.hero-image {
    margin-top: 0 !important;
}

.hero-container {
    margin-top: 0 !important;
    padding-top: 20px !important;
}
/* ================================
   INTRO SECTION
================================ */

.intro {
    padding: 90px 20px 80px;
    margin: 0;
}

.intro-container {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-text {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

/* Small heading */

.intro .eyebrow {
    display: block;
    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;

    color: #9a8064;
}

/* Main heading */

.intro h2 {
    margin: 0 auto 32px;

    max-width: 900px;

    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.02;
    letter-spacing: -2px;

    font-weight: 500;

    color: #263f35;
}

.intro h2 span {
    display: inline;
    color: #789985;
    font-style: italic;
}

/* Paragraphs */

.intro p {
    max-width: 820px;

    margin: 0 auto 20px;

    font-size: 17px;
    line-height: 1.8;

    color: #66706b;
}

/* Last line */

.intro p:last-child {
    margin-top: 28px;
    margin-bottom: 0;

    font-size: 15px;
    font-weight: 500;

    color: #78907f;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    .intro {
        padding: 65px 20px 60px;
    }

    .intro .eyebrow {
        margin-bottom: 18px;
        font-size: 10px;
        letter-spacing: 2px;
    }

    .intro h2 {
        margin-bottom: 25px;

        font-size: clamp(38px, 10vw, 52px);
        line-height: 1.05;
        letter-spacing: -1px;
    }

    .intro p {
        font-size: 15px;
        line-height: 1.7;
    }

    .intro p:last-child {
        margin-top: 24px;
    }
}
/* =====================================================
   HEALING HARVEST — INTRO SECTION FINAL
===================================================== */

.intro {
    width: 100%;
    padding: 70px 20px 75px;
    margin: 0;
    box-sizing: border-box;
}

.intro-container {
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    padding: 0;
}

.intro-text {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
}

/* EYEBROW */

.intro-eyebrow {
    display: block;
    margin: 0 0 18px;

    color: #9a8064;

    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    line-height: 1.4;

    text-transform: uppercase;
}

/* MAIN HEADING */

.intro-text h2 {
    margin: 0 auto 28px;

    max-width: 850px;

    color: #263f35;

    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 500;
    line-height: 1.03;

    letter-spacing: -2px;
}

.intro-text h2 span {
    display: inline;

    color: #789985;

    font-style: italic;
}

/* BODY TEXT */

.intro-text p {
    max-width: 760px;

    margin: 0 auto 18px;

    color: #66706b;

    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75;
}

/* FIRST PARAGRAPH */

.intro-text .intro-lead {
    max-width: 780px;

    margin-bottom: 18px;

    color: #4f5c54;

    font-size: 17px;
    line-height: 1.7;
}

/* FINAL SIGNATURE */

.intro-text .intro-signature {
    margin-top: 25px;
    margin-bottom: 0;

    color: #78907f;

    font-family: "Playfair Display", Georgia, serif;
    font-size: 19px;
    font-style: italic;
    font-weight: 500;
    line-height: 1.5;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    .intro {
        padding: 60px 20px 65px;
    }

    .intro-text h2 {
        margin-bottom: 24px;

        font-size: clamp(38px, 8vw, 56px);
        line-height: 1.05;
    }

    .intro-text p {
        font-size: 15px;
        line-height: 1.7;
    }

    .intro-text .intro-lead {
        font-size: 16px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 560px) {

    .intro {
        padding: 48px 18px 55px;
    }

    .intro-container {
        max-width: 100%;
    }

    .intro-eyebrow {
        margin-bottom: 14px;

        font-size: 9px;
        letter-spacing: 2px;
    }

    .intro-text h2 {
        margin-bottom: 20px;

        font-size: clamp(34px, 10vw, 46px);
        line-height: 1.04;
        letter-spacing: -1px;
    }

    .intro-text h2 span {
        display: block;
    }

    .intro-text p {
        max-width: 100%;

        margin-bottom: 15px;

        font-size: 14px;
        line-height: 1.7;
    }

    .intro-text .intro-lead {
        font-size: 15px;
        line-height: 1.65;
    }

    .intro-text .intro-signature {
        margin-top: 22px;

        font-size: 17px;
    }

}
/* =====================================================
   REMOVE UNWANTED SPACE BETWEEN HERO AND INTRO
===================================================== */

.hero {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    min-height: auto !important;
    height: auto !important;
}

.hero-container {
    margin-top: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hero-visual {
    margin-bottom: 0 !important;
}

.hero-image-wrapper {
    margin-bottom: 0 !important;
}

.intro {
    margin-top: 0 !important;
    padding-top: 45px !important;
}
/* =========================================
   INTRO SECTION — CLEAN & BALANCED
   ========================================= */

.intro {
    padding: 90px 20px 100px;
    text-align: center;
}

.intro-container {
    max-width: 1100px;
    margin: 0 auto;
}

.intro-text {
    max-width: 950px;
    margin: 0 auto;
}


/* Small label */

.intro .eyebrow {
    display: block;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 3px;
    text-transform: uppercase;

    color: #8b8174;
}


/* Main heading */

.intro h2 {
    max-width: 850px;

    margin: 0 auto 32px;

    font-size: clamp(42px, 5vw, 68px);

    line-height: 0.98;

    letter-spacing: -2px;

    font-weight: 500;

    color: #263c35;
}


/* Second part of heading */

.intro h2 span {
    display: block;

    color: #5f806f;

    font-style: italic;

    font-weight: 400;
}


/* Paragraphs */

.intro p {
    max-width: 800px;

    margin: 0 auto 20px;

    font-size: 17px;

    line-height: 1.75;

    color: #666b67;
}


/* Final line */

.intro p:last-child {
    margin-top: 28px;
    margin-bottom: 0;

    font-family: Georgia, serif;

    font-style: italic;

    font-size: 16px;

    color: #7d817d;
}


/* =========================================
   MOBILE
   ========================================= */

@media (max-width: 768px) {

    .intro {
        padding: 70px 20px 80px;
    }

    .intro h2 {
        max-width: 600px;

        font-size: clamp(38px, 10vw, 52px);

        line-height: 1.02;

        letter-spacing: -1px;

        margin-bottom: 28px;
    }

    .intro p {
        font-size: 15px;

        line-height: 1.7;
    }

    .intro .eyebrow {
        font-size: 10px;

        letter-spacing: 2.5px;

        margin-bottom: 18px;
    }

}
/* Reduce space between Intro and Products */

.intro {
    padding-bottom: 35px !important;
}

.products {
    padding-top: 45px !important;
}

.intro + .products {
    margin-top: 0 !important;
}
/* =========================================
   PRODUCTS → WHY US SPACING
   ========================================= */

.products {
    padding-bottom: 40px !important;
}

.why-us {
    padding-top: 45px !important;
}

.products + .why-us {
    margin-top: 0 !important;
}
/* =========================================
   WHY US → ABOUT SPACING
   ========================================= */

.why-us {
    padding-bottom: 40px !important;
}

.about {
    padding-top: 45px !important;
}

.why-us + .about {
    margin-top: 0 !important;
}
/* =========================================
   OUT OF STOCK IMAGE PLACEHOLDER
========================================= */

.out-of-stock-image {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 320px;

    background:
        linear-gradient(
            135deg,
            #f3f0e7,
            #e9e5d8
        );

    overflow: hidden;
}


.out-of-stock-content {
    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    gap: 8px;

    color: #52645a;
}


.out-of-stock-icon {
    font-size: 42px;

    margin-bottom: 5px;

    opacity: 0.65;
}


.out-of-stock-content strong {
    font-size: 15px;

    letter-spacing: 2px;

    font-weight: 700;
}


.out-of-stock-content small {
    font-size: 13px;

    opacity: 0.7;
}


/* Mobile */

@media (max-width: 768px) {

    .out-of-stock-image {
        min-height: 260px;
    }

}
/* =========================================
   OUT OF STOCK
========================================= */

.product-card.out-of-stock .add-cart {
    cursor: not-allowed;
    opacity: 0.55;
}

.product-card.out-of-stock .add-cart:disabled {
    pointer-events: none;
}

.product-card.out-of-stock {
    opacity: 0.9;
}
/* =========================================
   FLOATING CART
   Hidden until an item is selected
========================================= */

.floating-cart {
    position: fixed;

    right: 24px;
    bottom: 24px;

    width: 58px;
    height: 58px;

    border: none;
    border-radius: 50%;

    background: #234f43;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    z-index: 9990;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateY(20px);

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition:
        opacity 0.25s ease,
        transform 0.25s ease,
        visibility 0.25s ease;
}


/* Show when cart has items */

.floating-cart.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateY(0);
}


/* Icon */

.floating-cart-icon {
    font-size: 22px;
}


/* Item count */

.floating-cart-count {
    position: absolute;

    top: -5px;
    right: -5px;

    min-width: 21px;
    height: 21px;

    padding: 0 5px;

    border-radius: 50%;

    background: #b85c4a;
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 11px;
    font-weight: 700;

    box-sizing: border-box;
}


/* Hover */

.floating-cart:hover {
    transform: translateY(-3px);
}


/* Mobile */

@media (max-width: 768px) {

    .floating-cart {
        right: 16px;
        bottom: 18px;

        width: 54px;
        height: 54px;
    }

}
/* =========================================
   CONTACT → FOOTER SPACING
========================================= */

.contact {
    padding-bottom: 35px !important;
}

.footer {
    padding-top: 40px !important;
}

.contact + .footer {
    margin-top: 0 !important;
}
/* =========================================
   ABOUT → CONTACT SPACING
========================================= */

.about {
    padding-bottom: 35px !important;
}

.contact {
    padding-top: 45px !important;
}

.about + .contact {
    margin-top: 0 !important;
}
/* =========================================
   COMPACT FOOTER
========================================= */

.footer {
    padding-top: 40px !important;
    padding-bottom: 20px !important;
}


/* Main footer content */

.footer-container {
    padding-top: 0 !important;
    padding-bottom: 30px !important;

    gap: 40px !important;
}


/* Footer brand */

.footer-brand {
    margin-bottom: 0 !important;
}

.footer-brand p {
    margin-top: 12px !important;
    margin-bottom: 0 !important;
}


/* Footer links */

.footer-links {
    gap: 45px !important;
}

.footer-links h4 {
    margin-top: 0 !important;
    margin-bottom: 14px !important;
}

.footer-links a {
    margin-bottom: 8px !important;
}


/* Copyright area */

.footer-bottom {
    padding-top: 20px !important;
    padding-bottom: 0 !important;

    margin-top: 0 !important;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {

    .footer {
        padding-top: 35px !important;
        padding-bottom: 15px !important;
    }

    .footer-container {
        padding-bottom: 25px !important;
        gap: 30px !important;
    }

    .footer-links {
        gap: 25px !important;
    }

    .footer-bottom {
        padding-top: 18px !important;
    }

}
/* Remove space before footer-bottom */

.footer-container {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.footer-bottom {
    margin-top: 0 !important;
    padding-top: 20px !important;
}
.logo-symbol {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-symbol img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {

    .hero h1 {
        font-size: 14vw !important;
        line-height: 0.95 !important;
        letter-spacing: -0.04em !important;
        width: 100% !important;
        max-width: 100% !important;
        margin-left: auto !important;
        margin-right: auto !important;
        text-align: center !important;
        white-space: normal !important;
        overflow: visible !important;
    }

}
/* =========================================
   HEADER → HERO SPACING
========================================= */

header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero {
    margin-top: 0 !important;
    padding-top: 30px !important;
}


/* Mobile */

@media (max-width: 768px) {

    .hero {
        padding-top: 20px !important;
    }

}
/* =========================================
   BRAND HEADING — MOBILE FIX
========================================= */

.brand-heading {
    width: 100%;
    max-width: 100%;

    text-align: center;

    white-space: normal;

    overflow-wrap: break-word;
    word-break: normal;

    box-sizing: border-box;
}


/* Mobile */

@media (max-width: 768px) {

    .brand-heading {
        font-size: clamp(32px, 11vw, 58px) !important;

        line-height: 0.95 !important;

        letter-spacing: -0.04em !important;

        width: 100% !important;
        max-width: 100% !important;

        padding-left: 15px;
        padding-right: 15px;

        box-sizing: border-box;

        white-space: normal !important;

        text-align: center;
    }

}
/* Brand tagline */

.brand-tagline {
    margin-top: 8px;

    font-family: Georgia, "Times New Roman", serif;
    font-size: 18px;
    font-style: italic;
    font-weight: 400;

    letter-spacing: 0.08em;

    text-align: center;

    color: #557568;
}


/* Mobile */

@media (max-width: 768px) {

    .brand-tagline {
        margin-top: 6px;
        font-size: 15px;
        letter-spacing: 0.06em;
    }

}
/* =========================================
   COMPACT MOBILE FOOTER
========================================= */

@media (max-width: 768px) {

    .footer {
        padding-top: 30px !important;
        padding-bottom: 15px !important;
    }

    .footer-container {
        padding: 0 20px 20px !important;
        gap: 22px !important;
    }

    .footer-brand {
        margin-bottom: 0 !important;
    }

    .footer-brand p {
        margin-top: 8px !important;
        margin-bottom: 0 !important;
    }

    .footer-links {
        gap: 20px !important;
    }

    .footer-links h4 {
        margin-bottom: 8px !important;
    }

    .footer-links a {
        margin-bottom: 5px !important;
    }

    .footer-bottom {
        padding: 15px 20px 0 !important;
        margin: 0 !important;
    }

}
/* =========================================
   MOBILE NAVBAR — CLEAN & STABLE
========================================= */

@media (max-width: 768px) {

    header {
        width: 100%;
        position: relative;
        z-index: 1000;
    }

    header .nav-container {
        width: 100%;
        max-width: 100%;
        min-height: 70px;

        padding: 10px 16px !important;

        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;

        gap: 10px;
        box-sizing: border-box;
    }


    /* Logo */

    header .logo {
        flex: 0 1 auto;
        min-width: 0;

        display: flex !important;
        align-items: center !important;
    }

    header .main-logo {
        width: 165px !important;
        max-width: 100%;
        height: auto !important;

        display: block;
        object-fit: contain;
    }


    /* Right side controls */

    header .nav-actions {
        display: flex !important;
        align-items: center !important;
        gap: 8px;

        flex-shrink: 0;
    }


    /* Cart */

    header .cart-button {
        width: 42px;
        height: 42px;

        flex-shrink: 0;
    }


    /* Hamburger */

    header .menu-toggle {
        width: 42px;
        height: 42px;

        display: flex !important;
        align-items: center;
        justify-content: center;

        flex-shrink: 0;
    }

}


/* =========================================
   SMALL PHONES
========================================= */

@media (max-width: 480px) {

    header .nav-container {
        min-height: 64px;
        padding: 8px 12px !important;
    }

    header .main-logo {
        width: 145px !important;
    }

    header .cart-button,
    header .menu-toggle {
        width: 40px;
        height: 40px;
    }

}
.hero-title {
    font-size: clamp(42px, 5.5vw, 82px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 11vw;
        line-height: 1.05;
        white-space: nowrap;
    }
}
.hero-title {
    width: max-content !important;
    max-width: none !important;

    margin: 0 auto !important;

    font-size: clamp(32px, 4vw, 60px) !important;
    line-height: 1.05;
    letter-spacing: -0.025em;

    white-space: nowrap !important;
    text-align: center;
}
@media (max-width: 768px) {

    .hero-title {
        font-size: 5vw !important;
        white-space: nowrap !important;
    }

}
/* =========================================
   HEADER → HERO → INTRO SPACING
========================================= */

/* Remove space below header */
header {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Remove unnecessary space above hero */
.hero {
    margin-top: 0 !important;
    padding-top: 20px !important;
    padding-bottom: 30px !important;
}

/* Remove unnecessary space between hero and intro */
.intro {
    margin-top: 0 !important;
    padding-top: 30px !important;
}

/* Keep the hero content itself compact */
.hero-container {
    margin-top: 0 !important;
}


/* Mobile */
@media (max-width: 768px) {

    .hero {
        padding-top: 15px !important;
        padding-bottom: 20px !important;
    }

    .intro {
        padding-top: 20px !important;
        margin-top: 0 !important;
    }

}
/* =========================================================
   FIX HERO VERTICAL SPACE
========================================================= */

.hero {
    min-height: auto !important;
    height: auto !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: 35px !important;
    padding-bottom: 35px !important;

    display: block !important;
}

.hero-container {
    min-height: auto !important;
    height: auto !important;

    margin-top: 0 !important;
    margin-bottom: 0 !important;

    padding-top: 0 !important;
    padding-bottom: 0 !important;

    display: flex !important;
    align-items: center !important;
}

.hero-content {
    margin-top: 0 !important;
}

.intro {
    margin-top: 0 !important;
}


/* Desktop */
@media (min-width: 769px) {

    .hero {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

}


/* Mobile */
@media (max-width: 768px) {

    .hero {
        padding-top: 20px !important;
        padding-bottom: 25px !important;
    }

}
/* =========================================
   PROFESSIONAL CART ICON
========================================= */

.cart-button {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid rgba(35, 65, 55, 0.18);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.9);

    color: #244f43;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease;
}

.cart-button:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(30, 60, 50, 0.12);
}

.cart-icon {
    width: 21px;
    height: 21px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}


/* Quantity badge */

.cart-count {
    position: absolute;

    top: -4px;
    right: -3px;

    min-width: 19px;
    height: 19px;

    padding: 0 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #b78b45;
    color: white;

    font-family: inherit;
    font-size: 10px;
    font-weight: 700;

    line-height: 1;
}
.empty-cart-icon {
    width: 46px;
    height: 46px;

    margin: 0 auto 16px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: #557568;
}

.empty-cart-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}
/* =========================================
   FLOATING CART ICON FIX
========================================= */

.floating-cart {
    position: fixed;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-cart-icon {
    width: 24px !important;
    height: 24px !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    line-height: 0;
}

.floating-cart-icon svg {
    width: 24px !important;
    height: 24px !important;

    display: block !important;

    visibility: visible !important;
    opacity: 1 !important;
}
/* =========================================================
   MOBILE STABILITY & RESPONSIVE FIX
   Add this at the VERY BOTTOM of your CSS
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
}


/* =========================================================
   IMAGES
========================================================= */

img {
    max-width: 100%;
    height: auto;
}


/* =========================================================
   CONTAINERS
========================================================= */

.container {
    width: min(100% - 32px, 1200px);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    /* -----------------------------------------
       GLOBAL
    ----------------------------------------- */

    body {
        overflow-x: hidden;
    }

    section {
        width: 100%;
        max-width: 100%;
    }

    .container {
        width: calc(100% - 28px);
        max-width: 100%;
    }


    /* -----------------------------------------
       HEADER / NAVBAR
    ----------------------------------------- */

    header,
    .header,
    .navbar,
    .nav {
        width: 100%;
        max-width: 100%;
    }

    .nav-container {
        width: calc(100% - 24px);
        max-width: 100%;

        min-height: 64px;

        padding-left: 0;
        padding-right: 0;

        gap: 10px;
    }

    .logo {
        max-width: 170px;
        min-width: 0;

        display: flex;
        align-items: center;

        flex-shrink: 1;
    }

    .logo-text {
        min-width: 0;
    }

    .logo-text strong {
        white-space: nowrap;
        font-size: 17px;
    }

    .logo-text small {
        white-space: nowrap;
        font-size: 8px;
        letter-spacing: 1.5px;
    }

    .logo-symbol {
        flex-shrink: 0;
    }

    /* Prevent desktop navigation from overflowing */

    .nav-links {
        gap: 12px;
    }

    .nav-links a {
        white-space: nowrap;
    }


    /* -----------------------------------------
       BRAND HEADING
    ----------------------------------------- */

    .brand-heading {
        width: 100%;
        max-width: 100%;

        padding-left: 14px;
        padding-right: 14px;

        font-size: clamp(42px, 12vw, 76px);
        line-height: 0.95;

        letter-spacing: 0.02em;

        text-align: center;

        overflow-wrap: break-word;
        word-break: normal;
    }


    /* -----------------------------------------
       HERO
    ----------------------------------------- */

    .hero {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }

    .hero-container {
        width: calc(100% - 28px);
        max-width: 100%;

        padding-top: 24px;
        padding-bottom: 40px;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero h1 {
        max-width: 100%;

        font-size: clamp(42px, 11vw, 70px);
        line-height: 0.98;

        overflow-wrap: normal;
        word-break: normal;
    }

    .hero p {
        max-width: 100%;
    }


    /* -----------------------------------------
       HERO SINGLE-LINE TAGLINE
    ----------------------------------------- */

    .hero .hero-tagline {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.5;

        white-space: normal;
    }


    /* -----------------------------------------
       HERO BUTTONS
    ----------------------------------------- */

    .hero-buttons,
    .hero-actions,
    .cta-buttons {
        width: 100%;

        display: flex;
        flex-wrap: wrap;

        justify-content: center;
        align-items: center;

        gap: 10px;
    }

    .hero-buttons a,
    .hero-actions a,
    .cta-buttons a,
    .hero-buttons button,
    .hero-actions button,
    .cta-buttons button {
        max-width: 100%;
    }


    /* -----------------------------------------
       SECTIONS
    ----------------------------------------- */

    .section {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }


    /* -----------------------------------------
       INTRO
    ----------------------------------------- */

    .intro {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .intro-container {
        width: calc(100% - 28px);
        max-width: 100%;
    }

    .intro-text {
        width: 100%;
        max-width: 100%;

        text-align: center;
    }

    .intro-text h2 {
        width: 100%;
        max-width: 100%;

        font-size: clamp(36px, 9.5vw, 58px);
        line-height: 1.02;

        overflow-wrap: normal;
    }

    .intro-text p {
        max-width: 100%;

        font-size: 15px;
        line-height: 1.7;
    }


    /* -----------------------------------------
       PRODUCTS
    ----------------------------------------- */

    .products {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .products-grid,
    .product-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-card {
        width: 100%;
        max-width: 100%;

        overflow: hidden;
    }

    .product-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }


    /* -----------------------------------------
       WHY US
    ----------------------------------------- */

    .why-us {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .why-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        width: 100%;
        max-width: 100%;
    }


    /* -----------------------------------------
       ABOUT
    ----------------------------------------- */

    .about {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .about-container {
        width: calc(100% - 28px);
        max-width: 100%;
    }

    .about-visual,
    .about-image-space {
        width: 100%;
        max-width: 100%;
    }

    .about-real-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        display: block;
    }


    /* -----------------------------------------
       CONTACT
    ----------------------------------------- */

    .contact {
        padding-top: 42px;
        padding-bottom: 42px;
    }

    .contact-container {
        width: calc(100% - 28px);
        max-width: 100%;
    }

    .contact-grid {
        width: 100%;
        max-width: 100%;

        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-card,
    .contact-form {
        width: 100%;
        max-width: 100%;
    }

    input,
    textarea,
    select {
        width: 100%;
        max-width: 100%;
        font-size: 16px;
    }


    /* -----------------------------------------
       FOOTER
    ----------------------------------------- */

    .footer {
        width: 100%;
        max-width: 100%;

        padding-top: 36px;
        padding-bottom: 18px;

        overflow: hidden;
    }

    .footer-container {
        width: calc(100% - 28px);
        max-width: 100%;

        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-brand {
        width: 100%;
    }

    .footer-links {
        width: 100%;
        max-width: 100%;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 24px 18px;
    }

    .footer-links > div {
        min-width: 0;
    }

    .footer-links a {
        display: block;

        overflow-wrap: break-word;
    }

    .footer-bottom {
        width: calc(100% - 28px);
        max-width: 100%;

        margin-top: 28px;
        padding-top: 18px;

        display: flex;
        flex-direction: column;

        gap: 6px;

        text-align: center;
    }


    /* -----------------------------------------
       CART SIDEBAR
    ----------------------------------------- */

    .cart-sidebar {
        width: min(92vw, 420px);
        max-width: 92vw;

        overflow-y: auto;
        overflow-x: hidden;
    }

    .cart-header,
    .cart-items,
    .cart-footer {
        max-width: 100%;
    }

    .cart-item {
        min-width: 0;
    }

    .cart-item-info {
        min-width: 0;
    }

    .cart-item-info h4,
    .cart-item-info p {
        overflow-wrap: break-word;
    }


    /* -----------------------------------------
       FLOATING CART
    ----------------------------------------- */

    .floating-cart {
        position: fixed;

        right: 16px;
        bottom: 18px;

        width: 56px;
        height: 56px;

        z-index: 10000;

        border-radius: 50%;
    }

    .floating-cart-icon {
        width: 23px !important;
        height: 23px !important;
    }

    .floating-cart-icon svg {
        width: 23px !important;
        height: 23px !important;
    }

    .floating-cart-count {
        min-width: 21px;
        height: 21px;

        display: flex;
        align-items: center;
        justify-content: center;
    }


    /* -----------------------------------------
       MODAL
    ----------------------------------------- */

    .product-modal {
        padding: 12px;
    }

    .modal-content {
        width: 100%;
        max-width: 100%;

        max-height: 92vh;

        overflow-y: auto;
        overflow-x: hidden;
    }

    .modal-body {
        width: 100%;
        max-width: 100%;
    }


    /* -----------------------------------------
       BUTTONS
    ----------------------------------------- */

    button,
    a {
        -webkit-tap-highlight-color: transparent;
    }

    button {
        touch-action: manipulation;
    }


    /* -----------------------------------------
       PREVENT LONG TEXT FROM BREAKING LAYOUT
    ----------------------------------------- */

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    p,
    span,
    a {
        max-width: 100%;
    }

    p {
        overflow-wrap: break-word;
    }

}


/* =========================================================
   VERY SMALL PHONES
========================================================= */

@media (max-width: 390px) {

    .container,
    .nav-container,
    .hero-container,
    .intro-container,
    .about-container,
    .contact-container,
    .footer-container,
    .footer-bottom {
        width: calc(100% - 22px);
    }

    .brand-heading {
        font-size: 42px;
    }

    .logo {
        max-width: 145px;
    }

    .logo-text strong {
        font-size: 15px;
    }

    .logo-text small {
        font-size: 7px;
        letter-spacing: 1px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .floating-cart {
        right: 12px;
        bottom: 14px;

        width: 52px;
        height: 52px;
    }

}