:root {
    --olive: #6B7B5F;
    --olive-dark: #5A6A4F;
    --olive-light: #8A9A7E;
    --bg: #F5F5F3;
    --text: #3A3A3A;
    --text-light: #6A6A6A;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 80px;
}

/* Header */
.header {
    text-align: center;
    margin-bottom: 30px;
}

.menu-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(100px, 18vw, 220px);
    font-weight: 400;
    color: var(--olive);
    letter-spacing: 2px;
    line-height: 0.8;
    margin-bottom: 0;
}

.badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--olive);
    color: white;
    width: 120px;
    height: 80px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-top: -25px;
    position: relative;
    z-index: 10;
    line-height: 1.4;
}

.header-info {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 20px;
    padding: 0 10px;
}

.schedule, .hours {
    font-size: 12px;
    color: var(--text-light);
}

.address-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--olive);
    text-decoration: none;
    font-size: 12px;
    font-weight: 400;
    margin-top: 10px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s;
}

.address-link:hover {
    color: var(--olive-dark);
    text-decoration: underline;
}

.address-link .pin-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Sticky Navigation */
.sticky-nav {
    position: sticky;
    top: 0;
    background: var(--bg);
    z-index: 100;
    padding: 15px 0;
    margin: 0 -20px 40px;
    border-bottom: 1px solid var(--olive-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

    .nav-scroll::-webkit-scrollbar {
        display: none;
    }

.nav-link {
    flex-shrink: 0;
    background: transparent;
    border: 2px solid var(--olive);
    color: var(--olive);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

    .nav-link:hover,
    .nav-link.active {
        background: var(--olive);
        color: white;
    }

/* Legacy tabs (hidden - replaced by sticky nav) */
.nav-tabs {
    display: none;
}

.nav-tab {
    display: none;
}

/* Legacy page class - now always visible */
.page {
    display: block !important;
}

/* Menu Sections */
.menu-section {
    margin-bottom: 60px;
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.menu-column {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.menu-category {
    scroll-margin-top: 80px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--olive);
    margin-bottom: 18px;
}

.size-label {
    font-size: 13px;
    color: var(--olive);
    margin-bottom: 10px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
}

.item-info {
    flex: 1;
}

.item-name {
    font-size: 16px;
    color: var(--text);
}

.item-description {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 2px;
    font-weight: 300;
}

.item-note {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
}

.item-price {
    font-size: 16px;
    color: var(--text);
    margin-left: 20px;
    white-space: nowrap;
}

/* Tea Section */
.tea-section {
    max-width: 700px;
    margin: 0 auto;
    scroll-margin-top: 80px;
}

.tea-price-header {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--text-light);
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

    .tea-price-header span {
        color: var(--olive);
        font-weight: 600;
    }

.tea-item {
    text-align: center;
    padding: 35px 0;
    border-bottom: 1px solid var(--olive-light);
}

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

.tea-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--olive);
    margin-bottom: 8px;
}

.tea-ingredients {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--olive);
    margin-bottom: 12px;
}

.tea-description {
    font-size: 14px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto 8px;
}

.tea-benefit {
    font-size: 13px;
    color: var(--olive-light);
}

/* Sticky Footer Bar */
.sticky-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--olive);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    z-index: 100;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
.footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    padding-bottom: 70px; /* ruimte voor sticky footer */
    border-top: 1px solid var(--olive-light);
}

.footer-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--olive);
    text-decoration: none;
    font-weight: 500;
}

    .instagram svg {
        width: 24px;
        height: 24px;
    }

/* Responsive */
@media (max-width: 768px) {
    .header-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .schedule, .hours {
        text-align: center;
    }

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

    .sticky-nav {
        margin: 0 -20px 30px;
        padding: 12px 0;
    }

    .nav-scroll {
        padding: 0 15px;
        justify-content: flex-start;
        flex-wrap: nowrap;
    }

    .nav-link {
        padding: 8px 16px;
        font-size: 12px;
    }

    .menu-category {
        scroll-margin-top: 70px;
    }

    .tea-section {
        scroll-margin-top: 70px;
    }

    .tea-price-header {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (min-width: 769px) {
    .nav-scroll {
        justify-content: center;
    }
}

/* ============================================
   PUSH NOTIFICATION PROMPT
   ============================================ */

.push-prompt-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 10000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.push-prompt-overlay.visible {
    opacity: 1;
    pointer-events: all;
}

.push-prompt {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 380px;
    width: 100%;
    text-align: center;
    margin-bottom: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.push-prompt-overlay.visible .push-prompt {
    transform: translateY(0);
}

.push-prompt-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.push-prompt h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    color: var(--olive);
    margin-bottom: 10px;
}

.push-prompt p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.push-prompt-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.push-prompt-yes {
    background: var(--olive);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
}

.push-prompt-yes:hover {
    background: var(--olive-dark);
}

.push-prompt-no {
    background: transparent;
    border: none;
    padding: 10px;
    color: var(--text-light);
    font-size: 14px;
    cursor: pointer;
    font-family: inherit;
}

.push-prompt-no:hover {
    color: var(--text);
}

/* ============================================
   REVIEW PAGE
   ============================================ */

.review-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px 80px;
    text-align: center;
}

.review-header {
    margin-bottom: 30px;
}

.review-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 12vw, 120px);
    color: var(--olive);
    letter-spacing: 2px;
    line-height: 0.9;
    margin-bottom: 10px;
}

.review-subtitle {
    font-size: 16px;
    color: var(--text-light);
}

.review-form {
    text-align: left;
}

.review-question {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.question-label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    margin-bottom: 12px;
}

/* Star input */
.star-input {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.star-input .star {
    font-size: 36px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.15s, transform 0.15s;
    user-select: none;
}

.star-input .star:hover,
.star-input .star.hover {
    color: #ffc107;
    transform: scale(1.15);
}

.star-input .star.active {
    color: #ffc107;
}

/* Yes/No toggle */
.yesno-input {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.toggle-option {
    cursor: pointer;
}

.toggle-option input[type="radio"] {
    display: none;
}

.toggle-btn {
    display: inline-block;
    padding: 10px 30px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #ddd;
    color: var(--text-light);
    transition: all 0.2s;
}

.toggle-btn:hover {
    border-color: var(--olive-light);
}

.toggle-btn.yes.selected {
    background: #e8f5e9;
    border-color: #4caf50;
    color: #2e7d32;
}

.toggle-btn.no.selected {
    background: #ffebee;
    border-color: #e53935;
    color: #c62828;
}

/* Text area */
.review-textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    resize: vertical;
    min-height: 80px;
}

.review-textarea:focus {
    outline: none;
    border-color: var(--olive);
}

/* Submit button */
.review-submit {
    display: block;
    width: 100%;
    background: var(--olive);
    color: white;
    border: none;
    padding: 16px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    font-family: inherit;
    transition: background 0.2s;
}

.review-submit:hover {
    background: var(--olive-dark);
}

/* Back link */
.back-link {
    display: inline-block;
    margin-top: 25px;
    color: var(--olive);
    text-decoration: none;
    font-size: 14px;
}

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

/* ============================================
   THANK YOU PAGE
   ============================================ */

.thankyou {
    padding-top: 80px;
}

.thankyou-icon {
    width: 70px;
    height: 70px;
    background: #e8f5e9;
    color: #4caf50;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.thankyou-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    color: var(--olive);
    margin-bottom: 10px;
}

.thankyou-text {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.google-review-prompt {
    background: white;
    border-radius: 16px;
    padding: 25px;
    margin-top: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.google-review-prompt p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #4285f4;
    color: white;
    padding: 14px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.google-review-btn:hover {
    background: #3367d6;
}

/* ============================================
   UNSUBSCRIBE LINK
   ============================================ */

.unsubscribe-link {
    color: var(--text-light);
    font-size: 12px;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.2s;
}

.unsubscribe-link:hover {
    opacity: 1;
    text-decoration: underline;
}

/* Toast notification */
.push-unsubscribe-toast {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    background: #333;
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    white-space: nowrap;
}

.push-unsubscribe-toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
