@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
    --cream: #faf7f2;
    --cream2: #f2ede4;
    --green: #3d6b4f;
    --green2: #507a61;
    --green-light: #e4ede7;
    --brown: #8b5e3c;
    --gold: #c4943a;
    --dark: #1c1c1c;
    --text: #4a4a4a;
    --muted: #888;
    --white: #ffffff;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ── NAVBAR ── */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5vw;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(61, 107, 79, 0.1);
    position: sticky;
    top: 0;
    z-index: 200;
    transition: box-shadow 0.3s;
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

/* ── BRAND / FLOATING LOGO ── */
.brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 14px;
    text-indent: 14px;
    font-weight: 300;
    line-height: 1;
    display: inline-block;
    animation: brandFloat 6s ease-in-out infinite;
    position: relative;
}

/* Italic V */
.brand .brand-v {
    font-style: italic;
    color: var(--green2);
}

/* Gold dot ornament under brand in navbar */
.brand::after {
    content: '';
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
    margin: 3px auto 0;
    animation: dotPulse 6s ease-in-out infinite;
}

@keyframes brandFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    25% {
        transform: translateY(-7px);
    }

    60% {
        transform: translateY(-4px);
    }

    80% {
        transform: translateY(-9px);
    }
}

@keyframes dotPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

/* Footer brand (no float — too distracting in footer) */
.footer-brand .brand {
    animation: none;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 0.8rem;
}

.footer-brand .brand::after {
    display: none;
}

/* ── NAV LINKS ── */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--green);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--dark);
}

/* ── SCROLL TO TOP ── */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 1.5rem;
    width: 44px;
    height: 44px;
    background: var(--green);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 150;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s, background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--brown);
}

/* ── TOAST ── */
.toast-container {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.toast {
    background: var(--green);
    color: white;
    padding: 0.8rem 1.4rem;
    border-radius: 4px;
    font-size: 0.9rem;
    animation: slideIn 0.3s ease, fadeOut 0.4s ease 3.5s forwards;
    box-shadow: var(--shadow);
}

.toast-info {
    background: var(--brown);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateX(30px);
    }
}

/* ── FLASH MESSAGES ── */
.flash {
    padding: 0.8rem 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.flash-success {
    background: #e6f4ec;
    color: var(--green);
    border-left: 3px solid var(--green);
}

.flash-error {
    background: #fdecea;
    color: #c0392b;
    border-left: 3px solid #c0392b;
}

.flash-info {
    background: #eef3fb;
    color: #1877f2;
    border-left: 3px solid #1877f2;
}

/* ── HERO ── */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 92vh;
    padding: 5rem 5vw;
    background: linear-gradient(160deg, var(--cream) 55%, var(--green-light) 100%);
    overflow: hidden;
    position: relative;
}

.tag {
    display: inline-block;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--green);
    border: 1px solid var(--green);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.hero-text {
    max-width: 560px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.hero h1 em {
    font-style: italic;
    color: var(--green);
    display: inline-block;
}

.hero-line {
    display: block;
    opacity: 0;
    animation: heroLineIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-line:nth-child(1) {
    animation: heroLineIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards,
        gentleFloat 6s ease-in-out 1.4s infinite;
}

.hero-line:nth-child(2) {
    animation: heroLineIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards,
        gentleFloat 7s ease-in-out 1.6s infinite;
}

.hero-line:nth-child(3) {
    animation: heroLineIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.6s forwards,
        gentleFloat 8s ease-in-out 1.8s infinite;
}

@keyframes heroLineIn {
    0% {
        opacity: 0;
        transform: translateY(22px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    30% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-2px);
    }

    80% {
        transform: translateY(-8px);
    }
}

.hero p {
    color: var(--text);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    opacity: 0;
    animation: heroLineIn 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards,
        gentleFloat 9s ease-in-out 2.2s infinite;
}

.hero .tag {
    opacity: 0;
    animation: heroLineIn 1s ease 0s forwards,
        gentleFloat 10s ease-in-out 1.2s infinite;
}

.hero-btns {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: heroLineIn 1s ease 1.1s forwards,
        gentleFloat 7s ease-in-out 2.5s infinite;
}

/* hero visual blobs */
.hero-visual {
    width: 380px;
    height: 380px;
    position: relative;
    flex-shrink: 0;
}

.blob {
    position: absolute;
    width: 340px;
    height: 340px;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: linear-gradient(135deg, #a8d5b5 0%, #4a7c59 100%);
    opacity: 0.3;
    animation: blobAnim 8s ease-in-out infinite;
}

.blob2 {
    width: 280px;
    height: 280px;
    top: 50px;
    left: 50px;
    background: linear-gradient(135deg, #c4943a 0%, #8b5e3c 100%);
    animation-delay: -4s;
    animation-duration: 10s;
}

@keyframes blobAnim {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
}

/* ── TRUST BAR ── */
.trust-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 1.5rem 5vw;
    background: var(--green);
    color: white;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.trust-icon {
    font-size: 1rem;
}

/* ── SECTIONS ── */
.section {
    padding: 5rem 5vw;
}

.section-alt {
    background: var(--cream2);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--dark);
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.see-all {
    font-size: 0.85rem;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 1px;
}

.see-all:hover {
    text-decoration: underline;
}

/* ── PRODUCT GRID ── */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(61, 107, 79, 0.15);
    transform: translateY(-6px);
}

.card-image-wrap {
    display: block;
    position: relative;
    overflow: hidden;
}

.card-image-wrap img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
    animation: floatImg 4s ease-in-out infinite;
}

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

.product-placeholder {
    width: 100%;
    height: 280px;
    background: linear-gradient(135deg, #c8dfc9, #83b591);
}

.product-placeholder.large {
    height: 480px;
}

@keyframes floatImg {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

.product-card:nth-child(2) .card-image-wrap img {
    animation-delay: 0.7s;
}

.product-card:nth-child(3) .card-image-wrap img {
    animation-delay: 1.4s;
}

.product-card:nth-child(4) .card-image-wrap img {
    animation-delay: 2.1s;
}

.eco-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--green);
    color: white;
    font-size: 0.72rem;
    padding: 0.3rem 0.7rem;
    border-radius: 50px;
    letter-spacing: 1px;
    font-weight: 500;
}

.eco-badge.large {
    font-size: 0.85rem;
    padding: 0.4rem 1rem;
}

.product-info {
    padding: 1.3rem;
}

.product-category {
    font-size: 0.72rem;
    letter-spacing: 2px;
    color: var(--green);
    text-transform: uppercase;
}

.product-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    margin: 0.3rem 0 0.5rem;
}

.product-info h3 a {
    text-decoration: none;
    color: var(--dark);
    transition: color 0.2s;
}

.product-info h3 a:hover {
    color: var(--green);
}

.card-stars {
    margin-bottom: 0.8rem;
}

.star {
    color: #ddd;
    font-size: 0.9rem;
}

.star.filled {
    color: var(--gold);
}

.review-count {
    font-size: 0.78rem;
    color: var(--muted);
    margin-left: 0.3rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.5rem;
}

.price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    color: var(--brown);
    font-weight: 600;
}

.price.large {
    font-size: 2.2rem;
    display: block;
    margin: 0.8rem 0;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--green);
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
}

.btn-primary:hover {
    background: var(--brown);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(61, 107, 79, 0.3);
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: transparent;
    color: var(--green);
    border: 1.5px solid var(--green);
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.82rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.25s;
    font-family: 'Jost', sans-serif;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--green);
    color: white;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: #25d366;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    font-family: 'Jost', sans-serif;
}

.btn-whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

.btn-whatsapp.large {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
}

.btn-facebook {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: #1877f2;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
}

.btn-facebook:hover {
    background: #1462cc;
    transform: translateY(-2px);
}

.btn-facebook.large {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
}

.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.9rem 1.8rem;
    background: var(--dark);
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: background 0.2s;
}

.btn-phone:hover {
    background: #444;
}

.btn-sm {
    padding: 0.55rem 1.1rem !important;
    font-size: 0.75rem !important;
    letter-spacing: 1.5px;
}

.btn-disabled {
    display: inline-block;
    padding: 0.55rem 1.1rem;
    background: #eee;
    color: #aaa;
    border-radius: 3px;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: not-allowed;
}

.buy-btns {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

/* ── CATEGORIES ── */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.2rem;
}

.cat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2.5rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--green-light);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    gap: 0.7rem;
}

.cat-card:hover {
    background: var(--green);
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 107, 79, 0.2);
}

.cat-card:hover .cat-name {
    color: white;
}

.cat-icon {
    font-size: 1.8rem;
}

.cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--dark);
    letter-spacing: 1px;
}

/* ── FILTER BAR ── */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.5rem 1.3rem;
    border: 1px solid var(--green);
    color: var(--green);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 50px;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green);
    color: white;
}

/* ── REVIEWS ── */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

.review-card {
    background: var(--white);
    padding: 1.8rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.review-text {
    font-style: italic;
    color: var(--text);
    margin: 0.8rem 0;
    line-height: 1.7;
    font-size: 0.95rem;
}

.review-author {
    font-size: 0.82rem;
    color: var(--muted);
}

.reviews-section {
    max-width: 800px;
    margin: 0 auto;
}

.review-form-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.review-form-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
}

.review-form-card input,
.review-form-card textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    background: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.review-form-card input:focus,
.review-form-card textarea:focus {
    border-color: var(--green);
    background: white;
}

.star-picker {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.star-picker label {
    font-size: 0.85rem;
    color: var(--muted);
    letter-spacing: 1px;
}

.star-inputs {
    display: flex;
    flex-direction: row-reverse;
    gap: 0.2rem;
}

.star-inputs input[type="radio"] {
    display: none;
}

.star-label {
    font-size: 1.8rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s;
}

.star-inputs input:checked~label,
.star-inputs label:hover,
.star-inputs label:hover~label {
    color: var(--gold);
}

.review-item {
    background: var(--white);
    padding: 1.2rem 1.3rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
}

.review-header strong {
    font-size: 0.95rem;
}

.review-date {
    font-size: 0.78rem;
    color: var(--muted);
    margin-left: auto;
}

.empty-reviews {
    text-align: center;
    padding: 2rem;
    color: var(--muted);
    font-style: italic;
}

/* ── PRODUCT DETAIL ── */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.detail-image {
    position: relative;
}

.detail-image img {
    width: 100%;
    border-radius: 8px;
    animation: floatImg 4s ease-in-out infinite;
}

.detail-info h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    margin: 0.5rem 0 1rem;
}

.detail-stars {
    margin-bottom: 0.5rem;
}

.product-desc {
    line-height: 1.9;
    margin-bottom: 2rem;
}

.buy-options {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.buy-label {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.3rem;
}

/* ── ECO NOTE ── */
.eco-note {
    background: var(--green-light);
    border-left: 3px solid var(--green);
    padding: 0.75rem 1rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.88rem;
    color: var(--dark);
    margin-top: 1rem;
}

/* ── STOCK BADGE ── */
.stock-badge {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 50px;
    font-weight: 500;
    margin-top: 0.3rem;
}

.in-stock {
    background: #e6f4ec;
    color: var(--green);
}

.out-stock {
    background: #fdecea;
    color: #c0392b;
}

.out-of-stock-msg {
    background: #fdecea;
    border-left: 3px solid #c0392b;
    padding: 0.9rem 1rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.88rem;
    color: var(--dark);
}

.out-of-stock-msg a {
    color: var(--green);
    text-decoration: none;
    font-weight: 500;
}

/* ── BRAND STORY ── */
.brand-story {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    background: var(--green);
}

.story-text {
    color: white;
}

.story-text .tag {
    color: rgba(255, 255, 255, 0.7);
    border-color: rgba(255, 255, 255, 0.4);
}

.story-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    margin: 1rem 0 1.5rem;
    color: white;
}

.story-text h2 em {
    color: #a8d5b5;
}

.story-text p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
}

.story-text .btn-primary {
    background: white;
    color: var(--green);
}

.story-text .btn-primary:hover {
    background: var(--cream);
}

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

.story-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    position: relative;
    animation: floatImg 5s ease-in-out infinite;
}

.story-circle::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

/* ── CONTACT ── */
.contact-page {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact-info {
    padding-top: 1rem;
}

.contact-info h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 300;
    margin: 1rem 0 1.5rem;
}

.contact-info h2 em {
    color: var(--green);
    font-style: italic;
}

.contact-info p {
    color: var(--text);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-form-wrap h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.4rem;
}

.form-note {
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
    padding: 0.9rem 1rem;
    border: 1px solid #ddd;
    background: white;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    border-radius: 4px;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
}

/* ── ORDER OPTIONS ── */
.order-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1.5rem 0 2rem;
}

.order-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border: 1.5px solid var(--green-light);
    border-radius: 8px;
    padding: 1.2rem 1.4rem;
    flex-wrap: wrap;
}

.order-option-top {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.order-option-top h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: var(--dark);
    margin: 0.2rem 0 0;
}

.order-option-top p {
    font-size: 0.82rem;
    color: var(--muted);
    margin: 0;
}

.order-badge {
    display: inline-block;
    font-size: 0.68rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    background: #e6f4ec;
    color: var(--green);
    padding: 0.18rem 0.65rem;
    border-radius: 50px;
    font-weight: 500;
    width: fit-content;
}

.order-badge--email {
    background: #eef3fb;
    color: #1877f2;
}

.product-enquiry-note {
    background: var(--green-light);
    border-left: 3px solid var(--green);
    padding: 0.75rem 1rem;
    border-radius: 0 4px 4px 0;
    font-size: 0.88rem;
    color: var(--dark);
    margin-bottom: 1rem;
}

.order-option .btn-whatsapp,
.order-option .btn-outline,
.order-option .btn-facebook {
    white-space: nowrap;
    flex-shrink: 0;
}

/* ── NEWSLETTER ── */
.newsletter-section {
    background: var(--cream2);
    padding: 4rem 5vw;
    border-top: 1px solid #e0d9d0;
}

.newsletter-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-inner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.newsletter-inner p {
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 440px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: 1px solid #ccc;
    border-right: none;
    border-radius: 3px 0 0 3px;
    font-family: 'Jost', sans-serif;
    font-size: 0.95rem;
    outline: none;
    background: white;
}

.newsletter-form input:focus {
    border-color: var(--green);
}

.newsletter-form button {
    padding: 0.9rem 1.6rem;
    background: var(--green);
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 0 3px 3px 0;
    font-family: 'Jost', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: background 0.2s;
}

.newsletter-form button:hover {
    background: var(--brown);
}

/* ── FOOTER ── */
footer {
    background: var(--cream2);
    color: var(--text);
    padding: 4rem 5vw 2rem;
    border-top: 1px solid #e0d9d0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--dark);
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--green);
}

.footer-bottom {
    border-top: 1px solid #d8d0c6;
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── MISC ── */
.empty-msg {
    color: var(--muted);
    font-style: italic;
    font-size: 0.95rem;
    text-align: center;
    padding: 2rem;
}

/* ── ANIMATE IN ── */
.animate-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── STICKY WHATSAPP (mobile only) ── */
.sticky-whatsapp {
    display: none;
}

@media (max-width: 768px) {
    .sticky-whatsapp {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 100;
        padding: 0.8rem 1rem;
        background: white;
        border-top: 1px solid var(--green-light);
        box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.08);
    }

    .sticky-whatsapp .btn-whatsapp {
        width: 100%;
        justify-content: center;
        padding: 0.9rem;
        font-size: 0.9rem;
        border-radius: 4px;
    }

    .section:last-of-type {
        padding-bottom: 6rem;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 4rem 5vw;
        min-height: auto;
        gap: 3rem;
    }

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

    .hero-visual {
        width: 240px;
        height: 240px;
    }

    .blob {
        width: 220px;
        height: 220px;
    }

    .blob2 {
        width: 180px;
        height: 180px;
        top: 30px;
        left: 30px;
    }

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

    .brand-story {
        grid-template-columns: 1fr;
    }

    .story-visual {
        display: none;
    }

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

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

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

@media (max-width: 600px) {
    .navbar {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .nav-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 0;
    }

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

    .trust-bar {
        gap: 1rem;
    }

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

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

    .section {
        padding: 3rem 5vw;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input {
        border-right: 1px solid #ccc;
        border-radius: 3px;
    }

    .newsletter-form button {
        border-radius: 3px;
    }

    .order-option {
        flex-direction: column;
        align-items: flex-start;
    }

    .order-option .btn-whatsapp,
    .order-option .btn-outline {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .brand {
        font-size: 1.8rem;
        letter-spacing: 10px;
        text-indent: 10px;
    }

    @keyframes gentleFloat {

        0%,
        100% {
            transform: translateY(0px);
        }

        40% {
            transform: translateY(-3px);
        }

        70% {
            transform: translateY(-5px);
        }
    }
}

/* ── MAP SECTION ── */
.map-section {
    padding-bottom: 0;
}

.map-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(61, 107, 79, 0.12);
    border: 1px solid rgba(61, 107, 79, 0.1);
}

.map-iframe {
    width: 100%;
    height: 420px;
    border: none;
    display: block;
    filter: saturate(0.85) sepia(0.08);
    transition: filter 0.3s;
}

.map-wrapper:hover .map-iframe {
    filter: saturate(1) sepia(0);
}

.map-address-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: rgba(250, 247, 242, 0.97);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(61, 107, 79, 0.15);
    border-radius: 8px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    max-width: 280px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-address-icon {
    font-size: 1.3rem;
    line-height: 1.4;
    flex-shrink: 0;
}

.map-address-label {
    font-size: 0.68rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--green);
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.map-address-text {
    font-size: 0.88rem;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 0.4rem;
}

.map-directions-link {
    font-size: 0.78rem;
    color: var(--green);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-weight: 500;
    transition: color 0.2s;
}

.map-directions-link:hover {
    color: var(--brown);
}

.map-fallback {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--green-light);
    color: var(--green);
    font-size: 1rem;
    letter-spacing: 1px;
    border-radius: 8px;
}

@media (max-width: 600px) {
    .map-iframe {
        height: 300px;
    }

    .map-address-card {
        position: static;
        max-width: 100%;
        border-radius: 0 0 8px 8px;
        border-top: 1px solid rgba(61, 107, 79, 0.1);
    }

    .map-wrapper {
        border-radius: 8px;
    }
}

/* ── INSTAGRAM BUTTON ── */
.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.55rem 1.1rem;
    background: #e1306c;
    color: white;
    text-decoration: none;
    border-radius: 3px;
    font-size: 0.78rem;
    letter-spacing: 1px;
    font-weight: 500;
    transition: background 0.2s, transform 0.2s;
    font-family: 'Jost', sans-serif;
}

.btn-instagram:hover {
    background: #c13584;
    transform: translateY(-2px);
}

.btn-instagram.large {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
}