@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Playfair+Display:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500&display=swap');

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

:root {
    --bg: #F8F7F4;
    --primary: #A8B5A2;
    --primary-light: #C4CFC0;
    --primary-dark: #687D6A;
    --accent: #E8DED2;
    --text: #2F2F2F;
    --text-light: #6B6B6B;
    --card-bg: #fff;
    --hero-bg: #EFF1EE;
    --section-alt: #F2F4F0;
    --border: #D8DDD6;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg);
    color: var(--text);
    transition: all 0.6s ease;
}


/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 99;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 60px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--border);
    transition: all 0.6s;
}

.nav-logo {
    /*font-family: 'Westonia', 'Playfair Display', serif;*/

    font-family: 'Great Vibes', 'Playfair Display', serif;
    font-size: 2.3rem;
    font-weight: 400;
    color: var(--primary-dark);
    letter-spacing: 0.05em;
    transition: color 0.6s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

    .nav-links a {
        font-size: 0.82rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: var(--text-light);
        text-decoration: none;
        transition: color 0.3s;
    }

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

#navLogoText {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fonts-loaded #navLogoText {
    opacity: 1;
}

/* ── NAV DROPDOWN ── */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    white-space: nowrap;
    padding: 8px 6px;
    margin: -8px -6px;
}

.nav-chevron {
    font-size: 1rem;
    line-height: 1;
    display: inline-block;
    transition: transform 0.25s ease;
    color: var(--text-light);
    transform-origin: 50% 77%;
    position: relative;
    top: -5px;
    transform: rotate(-90deg);
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron {
    transform: rotate(0deg);
    color: var(--primary);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.10);
    padding: 8px 0;
    min-width: 190px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    z-index: 200;
}

    .nav-dropdown-menu::before {
        content: '';
        position: absolute;
        top: -20px;
        left: 0;
        right: 0;
        height: 20px;
    }

    .nav-dropdown-menu::after {
        content: '';
        position: absolute;
        top: -6px;
        left: 50%;
        transform: translateX(-50%);
        width: 10px;
        height: 10px;
        background: #fff;
        border-left: 1px solid var(--border);
        border-top: 1px solid var(--border);
        rotate: 45deg;
    }

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
}

    .nav-dropdown-menu a:hover {
        background: var(--hero-bg);
        color: var(--primary);
    }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: var(--hero-bg);
    padding: 160px 20px 80px;
    position: relative;
    overflow: hidden;
    transition: background 0.6s;
    z-index: 2
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse at 50% 60%, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
    }

.hero-tag {
    font-size: 0.78rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    transition: color 0.6s;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 300;
    color: var(--primary-dark);
    line-height: 1.1;
    margin-bottom: 20px;
    position: relative;
    transition: color 0.6s;
}

    .hero h1 em {
        font-style: italic;
        font-weight: 300;
    }

.hero p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 480px;
    line-height: 1.8;
    margin: 0 auto 40px;
    position: relative;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 1px solid var(--primary);
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    transition: all 0.4s;
    position: relative;
    background: transparent;
    cursor: pointer;
    border-radius: 8px;
    font-weight: 500;
}

    .btn:hover {
        background: var(--primary);
        color: #fff;
    }

.btn-filled {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

    .btn-filled:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
    }

/* ── SECTIONS ── */
section {
    padding: 100px 60px;
    transition: background 0.6s;
}

.section-tag {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 14px;
    transition: color 0.6s;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 16px;
    transition: color 0.6s;
}

.section-sub {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 520px;
    line-height: 1.8;
    font-weight: 400;
}

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

/* ── ABOUT ── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.about-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 2px;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    transition: background 0.6s;
}

.about-text p:not(.section-tag):not(.section-sub) {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.9;
    font-weight: 400;
    margin-bottom: 16px;
}

.divider {
    width: 48px;
    height: 1px;
    background: var(--accent);
    margin: 28px 0;
    transition: background 0.6s;
}



/* ── SIGNATURE HONEY SPOTLIGHT ── */
.honey-spotlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.honey-spotlight-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 4px;
    background: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
}

.honey-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    font-size: 0.68rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

/* ── MENU BUTTON GRID (honey cake section) ── */
.menu-btn-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    max-width: 420px; /* was 380px */
}

    .menu-btn-grid .btn:first-child {
        grid-column: span 2;
    }

    .menu-btn-grid .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-size: 0.78rem;
    }

@media (max-width: 520px) {
    .menu-btn-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}


/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 280px);
    gap: 16px;
    max-width: 1100px;
    margin: 50px auto 0;
}

/* Occasion Cakes: left column, full height */
.gallery-item--left {
    grid-column: 1;
    grid-row: 1 / span 2;
}

/* Other Cakes: middle column, top */
.gallery-item--mid-top {
    grid-column: 2;
    grid-row: 1;
}

/* Small Bakes: middle column, bottom */
.gallery-item--mid-bottom {
    grid-column: 2;
    grid-row: 2;
}

/* Honey Cakes: right column, full height */
.gallery-item--right {
    grid-column: 3;
    grid-row: 1 / span 2;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 2px;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--primary-light);
    background-size: cover;
    background-position: center;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.04);
}

/* Static label sitting above the vignette */
.gallery-label-static {
    position: absolute;
    bottom: 16px;
    left: 18px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.9);
    pointer-events: none;
    z-index: 2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 40%);
    pointer-events: none;
    z-index: 1;
}

.gallery-link {
    display: contents;
    text-decoration: none;
}


/* ── ENQUIRY ── */
.enquiry-wrap {
    max-width: 640px;
    margin: 50px auto 0;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

    .form-group label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-light);
        margin-bottom: 8px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        border: 1px solid var(--border);
        padding: 13px 16px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        color: var(--text);
        background: #fff;
        outline: none;
        transition: border-color 0.3s, background 0.6s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
        }

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

.form-submit {
    text-align: center;
    margin-top: 10px;
}


/* ── FOOTER ── */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    padding: 60px 40px;
    transition: background 0.6s;
}

    footer .footer-logo {
        font-family: 'Playfair Display', serif;
        font-size: 2rem;
        font-weight: 300;
        color: #fff;
        letter-spacing: 0.15em;
        margin-bottom: 16px;
    }

    footer p {
        font-size: 0.82rem;
        letter-spacing: 0.08em;
        margin-bottom: 8px;
        font-weight: 300;
    }

    footer .footer-links {
        display: flex;
        justify-content: center;
        gap: 30px;
        margin: 20px 0;
    }

        footer .footer-links a {
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.8rem;
            letter-spacing: 0.1em;
            text-decoration: none;
            text-transform: uppercase;
            transition: color 0.3s;
        }

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

.footer-divider {
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    margin: 24px auto;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 28px;
    margin: 16px 0;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #fff;
}

/* ── HONEYCOMB SIDES ── */
body::before,
body::after {
    content: '';
    position: fixed;
    top: 0;
    width: 108px;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 0.25;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='54' height='31'%3E%3Cpath d='M36,15.5 L27,31 L9,31 L0,15.5 L9,0 L27,0 Z' fill='none' stroke='%235a7a5e' stroke-width='1.5'/%3E%3Cline x1='36' y1='15.5' x2='54' y2='15.5' stroke='%235a7a5e' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 54px 31px;
    transition: opacity 0.6s;
}

body::before {
    left: 0;
    transform: scaleX(-1);
}

body::after {
    right: 0;
}



/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    nav {
        padding: 14px 24px;
    }

    section {
        padding: 70px 24px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery-item--left,
    .gallery-item--right {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item--mid-top,
    .gallery-item--mid-bottom {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-placeholder {
        height: 200px;
    }

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

/* ── FORM SUCCESS & ERROR ── */
.form-success {
    max-width: 640px;
    margin: 50px auto 0;
    text-align: center;
    padding: 60px 40px;
    border: 1px solid var(--border);
    background: var(--card-bg);
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.form-success h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 300;
}

.form-error {
    background: #fdf0f0;
    border: 1px solid #e0b0b0;
    color: #9a4545;
    padding: 12px 16px;
    font-size: 0.88rem;
    margin-bottom: 16px;
    border-radius: 2px;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

    .lightbox.active {
        display: flex;
    }

.lightbox-content {
    background: #ffffff;
    border: 1px solid rgba(255,255,255,0.4);
    padding: 24px;
    border-radius: 12px;
    max-width: 900px;
    max-height: 80vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

    .lightbox-content img {
        width: 100%;
        height: 220px;
        aspect-ratio: 1/1;
        object-fit: cover;
        border-radius: 10px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .lightbox-content img:hover {
            transform: scale(1.05);
        }

.lightbox.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: fixed;
    top: 12px;
    right: 16px;
    font-size: 5rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.2s;
    z-index: 5;
    color: #ffffff;
}



    .lightbox-close:hover {
        color: var(--primary);
    }

.image-zoom {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

    .image-zoom.active {
        display: flex;
    }

    .image-zoom img {
        max-width: 90%;
        max-height: 90%;
        border-radius: 12px;
        z-index: 1002;
    }

/* -- ZOOM LGHTBOX -- */

.zoom-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    color: #5a7a5e;
    cursor: pointer;
    padding: 12px;
    user-select: none;
    transition: opacity 0.2s, transform 0.2s;
    opacity: 0.7;
    z-index: 1003
}

    .zoom-arrow:hover {
        opacity: 1;
        transform: translateY(-50%) scale(1.1);
    }

    .zoom-arrow.left {
        left: 20px;
    }

    .zoom-arrow.right {
        right: 20px;
    }

@media (max-width: 768px) {

    /* Remove honeycomb sides on mobile */
    body::before,
    body::after {
        display: none;
    }

    /* Lightbox container tweaks */
    .lightbox-content {
        padding: 16px;
        grid-template-columns: 1fr 1fr;
        max-width: 95%;
        max-height: 85vh;
    }

        /* Images tighter */
        .lightbox-content img {
            height: 160px;
        }

    /* Zoom image sizing */
    .image-zoom img {
        max-width: 95%;
        max-height: 80%;
    }

    /* Bigger tap targets for arrows */
    .zoom-arrow {
        font-size: 2.2rem;
        padding: 16px;
    }

    /* Close button easier to tap */
    .lightbox-close {
        font-size: 3rem;
        top: 10px;
        right: 12px;
    }
}

/* ── NAV ORDER BUTTON ── */
.nav-order-btn {
    padding: 10px 24px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    border-radius: 8px;
    margin-left: 20px;
}


/* ── FAQ ACCORDION ── */
.faq-wrap {
    max-width: 720px;
    margin: 50px auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
    font-size: 0.92rem;
    color: var(--text);
    font-weight: 400;
    gap: 16px;
    transition: color 0.3s;
    list-style: none;
    user-select: none;
}

    .faq-question:hover {
        color: var(--primary-dark);
    }

.faq-icon {
    font-size: 1.2rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: transform 0.3s;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.8;
    font-weight: 300;
}

.faq-item.open .faq-answer {
    max-height: 1000px;
    padding-bottom: 20px;
}

.faq-answer ul {
    list-style: disc;
    padding-left: 18px;
    margin-top: 8px;
}

.faq-answer ul li {
    margin-bottom: 6px;
}

/* ── STICKY MOBILE ORDER BUTTON ── */
.sticky-order-btn {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 200;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(104,125,106,0.35);
}

@media (max-width: 768px) {
    .sticky-order-btn {
        display: inline-block;
    }

    .nav-order-btn {
        display: none;
    }

    .honey-spotlight {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .why-list {
        max-width: 100%;
    }
}

/* ── OVERLAY ── */
.enquiry-modal {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

    .enquiry-modal.active {
        opacity: 1;
        pointer-events: all;
    }

/* ── PANEL ── */
.enquiry-modal-inner {
    background: var(--bg, #F8F7F4);
    border: 1px solid var(--border, #D8DDD6);
    border-radius: 2px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    max-width: 600px;
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 52px 56px 48px;
    position: relative;
    transform: translateY(16px);
    transition: transform 0.3s ease;
    scrollbar-width: thin;
    scrollbar-color: var(--border, #D8DDD6) transparent;
}

    .enquiry-modal-inner::-webkit-scrollbar {
        width: 4px;
    }

    .enquiry-modal-inner::-webkit-scrollbar-track {
        background: transparent;
    }

    .enquiry-modal-inner::-webkit-scrollbar-thumb {
        background: var(--border, #D8DDD6);
        border-radius: 2px;
    }

.enquiry-modal.active .enquiry-modal-inner {
    transform: translateY(0);
}

/* ── CLOSE BUTTON ── */
.enquiry-modal-close {
    position: absolute;
    top: 14px;
    right: 18px;
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: var(--text-light, #6B6B6B);
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
    font-family: 'Montserrat', sans-serif;
}

    .enquiry-modal-close:hover {
        color: var(--primary-dark, #687D6A);
    }

/* ── MODAL HEADER ── */
.enquiry-modal-header {
    text-align: center;
    margin-bottom: 36px;
}

    .enquiry-modal-header .section-tag {
        font-size: 0.72rem;
        letter-spacing: 0.25em;
        text-transform: uppercase;
        color: var(--primary, #A8B5A2);
        margin-bottom: 12px;
        display: block;
    }

    .enquiry-modal-header h3 {
        font-family: 'Playfair Display', serif;
        font-size: clamp(1.8rem, 4vw, 2.6rem);
        font-weight: 300;
        color: var(--primary-dark, #687D6A);
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .enquiry-modal-header p {
        font-size: 0.9rem;
        color: var(--text-light, #6B6B6B);
        font-weight: 300;
        line-height: 1.8;
        max-width: 380px;
        margin: 0 auto;
    }

/* ══════════════════════════════════════════════════════════════
   FORM LAYOUT — explicit rules scoped to the modal so they work
   regardless of load order or base-stylesheet specificity
   ══════════════════════════════════════════════════════════════ */

.enquiry-modal-inner .enquiry-wrap {
    margin-top: 0;
    max-width: 100%;
}

/* Two-column row */
.enquiry-modal-inner .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

/* Each field: label stacked above input */
.enquiry-modal-inner .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

    .enquiry-modal-inner .form-group label {
        font-size: 0.75rem;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: var(--text-light, #6B6B6B);
        margin-bottom: 8px;
        font-family: 'Montserrat', sans-serif;
    }

    .enquiry-modal-inner .form-group input:not([type="checkbox"]),
    .enquiry-modal-inner .form-group select,
    .enquiry-modal-inner .form-group textarea {
        border: 1px solid var(--border, #D8DDD6);
        padding: 13px 16px;
        font-family: 'Montserrat', sans-serif;
        font-size: 0.9rem;
        color: var(--text, #2F2F2F);
        background: #fff;
        outline: none;
        transition: border-color 0.3s;
        border-radius: 0;
        width: 100%;
        box-sizing: border-box;
        -webkit-appearance: none;
        appearance: none;
    }

    /* Keep the native arrow on selects */
    .enquiry-modal-inner .form-group select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 14px center;
        padding-right: 36px;
        cursor: pointer;
    }

        .enquiry-modal-inner .form-group input:focus,
        .enquiry-modal-inner .form-group select:focus,
        .enquiry-modal-inner .form-group textarea:focus {
            border-color: var(--primary, #A8B5A2);
            box-shadow: 0 0 0 3px rgba(168, 181, 162, 0.15);
        }

    .enquiry-modal-inner .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

/* ── DELIVERY SECTION ── */
.enquiry-modal-inner .delivery-section-wrap {
    background: var(--section-alt, #F2F4F0);
    border: 1px solid var(--border, #D8DDD6);
    border-left: 3px solid var(--primary, #A8B5A2);
    padding: 20px 22px 16px;
    margin-bottom: 20px;
    border-radius: 2px;
}

.enquiry-modal-inner .delivery-section-title {
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--primary, #A8B5A2);
    margin-bottom: 4px;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    display: block;
}

.enquiry-modal-inner .delivery-section-sub {
    font-size: 0.78rem;
    color: var(--text-light, #6B6B6B);
    font-weight: 300;
    margin-bottom: 14px;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.enquiry-modal-inner .delivery-tiers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.enquiry-modal-inner .delivery-tier-badge {
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    padding: 4px 10px;
    border-radius: 20px;
    color: var(--primary-dark, #687D6A);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border, #D8DDD6);
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.enquiry-modal-inner .postcode-check-row {
    display: flex;
    gap: 10px;
}

    .enquiry-modal-inner .postcode-check-row input {
        flex: 1;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

.enquiry-modal-inner .postcode-btn {
    white-space: nowrap;
    padding: 13px 22px;
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
}

/* ── DELIVERY RESULT CARDS ── */
.enquiry-modal-inner .delivery-result {
    display: none;
    margin-top: 10px;
}

    .enquiry-modal-inner .delivery-result.active {
        display: block;
    }

.enquiry-modal-inner .delivery-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    border-radius: 2px;
    gap: 12px;
}

.enquiry-modal-inner .free-delivery {
    background: #eef4ee;
    border: 1px solid #c2d8c2;
}

.enquiry-modal-inner .paid-delivery {
    background: #fdf8f0;
    border: 1px solid #e0cfb0;
}

.enquiry-modal-inner .poa-delivery {
    background: #f7f5f0;
    border: 1px solid var(--border, #D8DDD6);
}

.enquiry-modal-inner .delivery-left {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.enquiry-modal-inner .delivery-distance {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-dark, #687D6A);
    font-weight: 400;
}

.enquiry-modal-inner .delivery-note {
    font-size: 0.75rem;
    color: var(--text-light, #6B6B6B);
    letter-spacing: 0.06em;
    font-weight: 300;
}

.enquiry-modal-inner .delivery-cost {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-dark, #687D6A);
    white-space: nowrap;
}

.enquiry-modal-inner .delivery-checking {
    font-size: 0.8rem;
    color: var(--text-light, #6B6B6B);
    letter-spacing: 0.1em;
    font-style: italic;
}

.enquiry-modal-inner .delivery-error {
    font-size: 0.8rem;
    color: #c4898a;
    letter-spacing: 0.05em;
}

/* ── FORM AGREE ── */
.form-agree {
    margin-bottom: 20px;
}

.agree-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-light, #6B6B6B);
    line-height: 1.75;
    font-weight: 300;
    font-family: 'Montserrat', sans-serif;
}

    .agree-label input[type="checkbox"] {
        margin-top: 4px;
        flex-shrink: 0;
        accent-color: var(--primary, #A8B5A2);
        width: 14px;
        height: 14px;
        cursor: pointer;
    }

    .agree-label a {
        color: var(--primary-dark, #687D6A);
        text-decoration: underline;
        text-underline-offset: 2px;
        transition: color 0.2s;
    }

        .agree-label a:hover {
            color: var(--primary, #A8B5A2);
        }

.agree-error {
    margin-top: 8px;
    font-size: 0.78rem;
    color: #9a4545;
    letter-spacing: 0.04em;
}

/* ── FORM ERROR ── */
.enquiry-modal-inner .form-error {
    background: #fdf0f0;
    border: 1px solid #e0b0b0;
    color: #9a4545;
    padding: 12px 16px;
    font-size: 0.88rem;
    margin-bottom: 16px;
    border-radius: 2px;
    font-family: 'Montserrat', sans-serif;
}

/* ── SUBMIT BUTTON — full width ── */
.enquiry-modal-inner .form-submit {
    margin-top: 16px;
}

    .enquiry-modal-inner .form-submit .btn {
        width: 100%;
        padding: 15px;
        letter-spacing: 0.2em;
        font-size: 0.8rem;
    }

/* ── SUCCESS STATE ── */
.enquiry-modal-inner .form-success {
    margin: 0;
    border: none;
    background: transparent;
    padding: 40px 0;
    text-align: center;
}

/* ── OPEN BUTTON (main page) ── */
.enquiry-open-btn {
    padding: 16px 52px;
    letter-spacing: 0.18em;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE — bottom sheet on mobile
   ══════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    .enquiry-modal {
        padding: 0;
        align-items: flex-end;
    }

    .enquiry-modal-inner {
        padding: 28px 20px 36px;
        max-height: 94vh;
        border-radius: 10px 10px 0 0;
        transform: translateY(32px);
        box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.08);
    }

    .enquiry-modal.active .enquiry-modal-inner {
        transform: translateY(0);
    }

    /* Drag handle */
    .enquiry-modal-inner::before {
        content: '';
        display: block;
        width: 32px;
        height: 3px;
        background: var(--border, #D8DDD6);
        border-radius: 2px;
        margin: 0 auto 20px;
    }

    .enquiry-modal-header h3 {
        font-size: 1.8rem;
    }

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

/* ── HAMBURGER BUTTON (hidden on desktop) ── */
.nav-hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
    align-items: center;
    justify-content: center;
    z-index: 101;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text-light);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── MOBILE STYLES ── */
@media (max-width: 768px) {

    nav {
        padding: 10px 20px;
        flex-wrap: wrap;
        position: fixed;
    }

    /* Smaller logo so text stays on one line */
    .nav-logo {
        font-size: 1.55rem;
    }

    .nav-logo img {
        width: 30px !important;
        height: 30px !important;
    }

    /* Show hamburger, hide desktop links */
    .nav-hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 8px 0 14px;
        border-top: 1px solid var(--border);
        margin-top: 10px;
        background: rgba(255, 255, 255, 0.97);
    }

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

    .nav-links > a {
        padding: 13px 4px;
        font-size: 0.82rem;
        border-bottom: 1px solid var(--border);
    }

    .nav-links > a:last-child {
        border-bottom: none;
    }

    /* Mobile dropdown — inline, not floating */
    .nav-dropdown {
        width: 100%;
        border-bottom: 1px solid var(--border);
    }

    .nav-dropdown-toggle {
        width: 100%;
        padding: 13px 4px;
        margin: 0;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        pointer-events: all;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        padding: 0 0 8px 16px;
        min-width: auto;
        background: transparent;
        display: none;
        transition: none;
    }

    .nav-dropdown-menu::before,
    .nav-dropdown-menu::after {
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
        transform: none;
    }

    .nav-dropdown-menu a {
        padding: 9px 0;
        font-size: 0.76rem;
        border-bottom: none;
    }

    /* Hamburger → X animation when menu is open */
    nav.nav-open .nav-hamburger span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    nav.nav-open .nav-hamburger span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }

    nav.nav-open .nav-hamburger span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* ── PRICE TABLE — centred at all sizes ── */
.price-table {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.price-table thead th {
    text-align: center;
}

.price-table tbody td {
    text-align: center;
}
 
.note-cell {
    text-align: left;
}
 
 
/* ── MOBILE ── */
@media (max-width: 768px) {
 
    /* ── PADDING FIX ──
       Prices/decoration sections have inline style="padding:90px 60px" — needs !important.
       Flavours section is .full-alt with no inline style — overrides normally.
       Both brought to 16px horizontal for consistency. */
    section[style*="padding:90px 60px"],
    section[style*="padding: 90px 60px"] {
        padding-left: 16px !important;
        padding-right: 16px !important;
        overflow-x: hidden;
    }
 
    section.full-alt {
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: hidden;
    }
 
    .menu-block {
        padding-left: 16px;
        padding-right: 16px;
    }
 
    /* ── FLAVOUR GRID — accordion layout ──
       One flavour per row, expanding downward on tap.
       Mirrors the FAQ section behaviour. */
    .flavour-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        border-top: 1px solid var(--border);
    }
 
    /* Card: full-width block, no card border — just a bottom rule like FAQ */
    .flavour-tag {
        display: block;
        padding: 0;
        border: none;
        border-bottom: 1px solid var(--border);
        border-radius: 0;
        background: transparent;
        cursor: pointer;
        user-select: none;
        transform: none !important;
        box-shadow: none !important;
    }
 
    /* Name row — flex row with + on the right, like a FAQ question */
    .flavour-name {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 2px;
        font-size: 0.92rem;
        color: var(--primary-dark);
        margin-bottom: 0;
    }
 
    /* + icon sits at the right of the name row */
    .flavour-name::after {
        content: '+';
        font-size: 1.2rem;
        color: var(--primary);
        flex-shrink: 0;
        margin-left: 12px;
        transition: transform 0.25s ease, color 0.2s;
        line-height: 1;
    }
 
    /* Rotate + to × when open */
    .flavour-tag.open .flavour-name::after {
        transform: rotate(45deg);
        color: var(--primary-dark);
    }
 
    /* Description: hidden via max-height (allows smooth CSS transition) */
    .flavour-desc {
        display: block;       /* override any display:none */
        max-height: 0;
        overflow: hidden;
        padding: 0 2px;
        font-size: 0.82rem;
        color: var(--text-light);
        line-height: 1.75;
        font-weight: 300;
        transition: max-height 0.35s ease, padding 0.3s ease;
    }
 
    /* Expand description downward on open */
    .flavour-tag.open .flavour-desc {
        max-height: 200px;
        padding-bottom: 14px;
    }
 
    /* ── DECORATION GRID ──
       Single column, no hard minimum width that can overflow. */
    .deco-grid {
        grid-template-columns: 1fr !important;
    }
 
    .deco-text-title,
    .deco-text-desc {
        overflow-wrap: break-word;
        word-break: break-word;
    }
 
    .deco-text-desc {
        display: none;
    }
 
    .deco-item {
        padding: 4px 0;
    }
}

@media (max-width: 768px) {
 
    /* Shrink the box: 80% wide leaves ~10% visible backdrop on each side.
       65vh tall leaves ~17.5vh clear above and below when centred —
       the × button at top:10px sits well clear of the content box. */
    .lightbox-content {
        max-width: 80%;
        max-height: 65vh;
        padding: 12px;
    }
 
    /* Reduce thumbnail height to fit more rows in the smaller box */
    .lightbox-content img {
        height: 110px;
    }
 
    /* Nudge the close button down slightly so it sits visually
       centred in the space above the lightbox content box */
    .lightbox-close {
        top: 16px;
    }
}
