/* ============================================================
   1. CSS Reset & Variable Definitions
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

:root {
    --bg-color: #ffffff;
    --card-bg: #ffffff;
    --text-primary: #1a1a1a;
    --text-secondary: #555555;
    --gold-gradient: linear-gradient(135deg, #dfb74c, #b38924);
    --gold-solid: #b38924; 
    --border-color: #eaeaea;
    --forest-green: #2c3e1f;
    --cream-bg: #f5f0e8;
    --cream-card: #eee8d8;
}

body {
    background: var(--cream-bg); 
    color: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 40px 20px;
}

/* ============================================================
   2. CRITICAL NAVIGATION FIX (FOOLPROOF VIEW HIDDING)
   ============================================================ */
.view {
    display: none !important;
}
.view.active {
    display: block !important;
}

/* Mobile Container Base Style */
.mobile-container {
    width: 100%;
    max-width: 480px;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(179, 137, 36, 0.15), 0 4px 15px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid var(--border-color);
    position: relative;
    min-height: 80vh;
}

@media (max-width: 767px) {
    body { padding: 0; background: var(--cream-bg); }
    .mobile-container {
        max-width: 100%; border-radius: 0; box-shadow: none; border: none; min-height: 100vh;
    }
}

/* ============================================================
   3. MOBILE STYLES (Applies to all screens before PC override)
   ============================================================ */

/* --- Header --- */
.header {
    text-align: center;
    padding: 30px 20px 15px 20px;
    background: #ffffff;
}

.logo-placeholder {
    width: 90px; height: 90px;
    border-radius: 50%;
    background: #ffffff;
    margin: 0 auto 15px auto;
    display: flex; justify-content: center; align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid var(--gold-solid);
    overflow: hidden;
}

.logo-placeholder img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }

/* Hero ship/rice image is a PC-only element — hidden by default (mobile),
   desktop media query below turns it back on */
.pc-hero-img { display: none; }


.hero-title {
    font-size: 20px; font-weight: 700; color: var(--gold-solid);
    letter-spacing: 1px; text-transform: uppercase; margin-bottom: 5px;
}

.hero-subtitle {
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    color: var(--text-secondary); text-transform: uppercase; margin-bottom: 10px;
}

.hero-desc {
    font-size: 13px; line-height: 1.6; color: var(--text-secondary);
    padding: 0 10px; text-align: center;
}

/* --- Section Titles --- */
.section-title {
    font-size: 16px; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left; position: relative; margin-bottom: 30px;
    color: var(--forest-green);
}
.section-title::after {
    content: ''; position: absolute; left: 0; bottom: -10px;
    width: 35px; height: 3px; background: var(--gold-solid); border-radius: 2px;
}

/* --- Products Section --- */
.products-section { padding: 30px 20px; background: #ffffff; }
.product-list { display: flex; flex-direction: column; gap: 20px; }

.product-card {
    background: #ffffff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 3px 12px rgba(44,62,31,0.07); border: 1px solid #ece4d0;
    position: relative; transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
}
.product-card:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(44,62,31,0.12); }
.product-image-container { width: 100%; height: 180px; overflow: hidden; }
.product-image { width: 100%; height: 100%; object-fit: cover; }
.product-info { padding: 16px 20px; background: #ffffff; display: flex; justify-content: space-between; align-items: center; }
.product-name-btn { background: none; border: none; font-size: 16px; font-weight: 700; color: var(--forest-green); cursor: pointer; padding: 0; text-align: left; }
.arrow-icon { font-size: 20px; color: var(--gold-solid); font-weight: bold; }

/* --- Contact Form (Home View) --- */
.form-section { padding: 30px 20px; background: var(--cream-bg); }
.contact-form { display: flex; flex-direction: column; gap: 15px; }
.form-control {
    width: 100%; padding: 14px 16px; border: 1px solid #ddd5c0;
    border-radius: 8px; background-color: #ffffff; color: var(--text-primary);
    font-size: 14px; transition: all 0.3s ease;
}
.form-control:focus { outline: none; border-color: var(--gold-solid); background: #fff; }
textarea.form-control { resize: vertical; min-height: 100px; }

.submit-btn {
    background: var(--gold-gradient); color: #ffffff; border: none;
    padding: 15px; font-size: 14px; font-weight: 700; letter-spacing: 2px;
    border-radius: 10px; cursor: pointer; transition: opacity 0.3s ease;
    text-transform: uppercase; box-shadow: 0 4px 14px rgba(179, 137, 36, 0.3);
}
.submit-btn:hover { opacity: 0.9; }

/* --- Social Media Icons --- */
.contact-us-section { text-align: center; margin-top: 20px; padding-bottom: 40px; }
.contact-us-section h4 {
    font-size: 11px; font-weight: 700; color: #888; margin-bottom: 18px;
    text-transform: uppercase; letter-spacing: 2.5px;
    display: flex; align-items: center; gap: 12px; justify-content: center;
}
.contact-us-section h4::before,
.contact-us-section h4::after {
    content: ''; flex: 1; height: 1px; background: #ddd5c0; max-width: 60px;
}
.social-icons { display: flex; justify-content: center; align-items: center; gap: 14px; }
.social-icons a {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: #ffffff; border: 1px solid #e0d8c8;
    color: #3a3a3a; font-size: 17px; text-decoration: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-icons a:hover { background: var(--forest-green); color: var(--gold-solid); border-color: var(--forest-green); }

/* --- Selection View (Screen 2 Styles) --- */
.detail-top-header { display: none; }
.detail-header { position: relative; width: 100%; height: 250px; }
.detail-hero-image { width: 100%; height: 100%; object-fit: cover; }
.back-btn {
    position: absolute; top: 20px; left: 20px; background: rgba(255, 255, 255, 0.9);
    border: none; width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 18px;
    color: var(--text-primary); cursor: pointer; box-shadow: 0 2px 10px rgba(0,0,0,0.15); z-index: 10;
}
.detail-content { padding: 20px; background: #ffffff; }
.detail-product-title { font-size: 26px; font-weight: 600; color: var(--text-primary); margin-bottom: 10px; }
.divider { border: 0; height: 1px; background: var(--border-color); margin: 15px 0; }
.meta-info { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.meta-info span { font-weight: bold; color: var(--text-primary); }
.product-description { padding: 0 20px 30px 20px; }
.product-description p { font-size: 13px; line-height: 1.7; color: var(--text-secondary); white-space: pre-line; }
.selection-group { margin-bottom: 25px; }
.group-title { font-size: 15px; font-weight: 500; color: var(--text-secondary); margin-bottom: 12px; }
.options-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.option-button {
    background: #ffffff; border: 1px solid var(--border-color); border-radius: 6px;
    padding: 10px 16px; font-size: 13px; font-weight: 500; color: var(--text-primary); cursor: pointer; transition: all 0.2s ease;
}
.option-button.active { border-color: var(--gold-solid); background-color: rgba(179, 137, 36, 0.08); color: var(--gold-solid); font-weight: 600; }
.action-container { padding: 0 20px 30px 20px; }
.next-btn { width: 100%; background: var(--gold-gradient); color: #ffffff; border: none; padding: 15px; font-size: 15px; font-weight: 700; border-radius: 8px; cursor: pointer; text-transform: uppercase; }

/* --- Booking Details View (Screen 3 Styles) --- */
.booking-navbar {
    display: grid !important; grid-template-columns: 1fr auto 1fr;
    align-items: center; padding: 15px 20px; border-bottom: 1px solid var(--border-color); background: #ffffff;
}
.booking-navbar .nav-close-btn { grid-column: 1; justify-self: start; background: none; border: none; font-size: 20px; cursor: pointer; color: #000; }
.booking-navbar .nav-title { grid-column: 2; font-size: 18px; font-weight: 700; color: #000000; text-transform: lowercase; }
.booking-navbar .nav-more-icon { grid-column: 3; justify-self: end; visibility: hidden !important; pointer-events: none; }
.booking-content-container { padding: 25px 20px; background-color: #fafafa; }
.summary-card { background: #ffffff; border: 1px solid #e2e8f0; border-radius: 16px; padding: 22px; margin-bottom: 30px; }
.summary-title { color: var(--gold-solid); font-size: 14px; font-weight: 700; margin-bottom: 15px; }
.summary-item { font-size: 14px; margin-bottom: 10px; color: #1a1a1a; }
.summary-item strong { font-weight: 600; }
.contact-header { color: var(--gold-solid); font-size: 22px; font-weight: 700; margin-bottom: 25px; text-transform: uppercase; }
.booking-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; position: relative; }
.form-label { font-size: 13px; font-weight: 600; color: #4a4a4a; }
.booking-input { padding: 14px 16px; border: 1px solid #d1d5db; border-radius: 12px; font-size: 16px; background-color: #ffffff; width: 100%; transition: border-color 0.2s;}
.booking-input:focus { outline: none; border-color: var(--gold-solid); }
.phone-input-wrapper { display: flex; gap: 8px; }
.phone-code-select { flex: 0 0 90px; padding: 14px 8px; border: 1px solid #d1d5db; border-radius: 12px; font-size: 15px; background-color: #ffffff; }
.phone-number-input { flex: 1; }
.country-select-wrapper { position: relative; display: flex; align-items: center; }
.country-select-wrapper .booking-input { cursor: text; padding-right: 45px; }
.dropdown-trigger { position: absolute; right: 0; top: 0; height: 100%; width: 45px; display: flex; justify-content: center; align-items: center; cursor: pointer; z-index: 2; }
.dropdown-arrow { color: #555555; font-size: 16px; pointer-events: none; }
.submit-booking-btn { background: var(--gold-gradient); color: #ffffff; border: none; padding: 16px; font-size: 16px; font-weight: 700; border-radius: 12px; cursor: pointer; margin-top: 15px; }

/* --- Modal Layout (For Country Selection) --- */
.modal-overlay { display: none; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.4); z-index: 99; }
.modal-overlay.active { display: block; }
.country-modal { display: none; position: absolute; bottom: 0; left: 0; right: 0; height: 60%; background: #ffffff; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0 -5px 25px rgba(0,0,0,0.15); z-index: 100; flex-direction: column; overflow: hidden; border-top: 1px solid var(--border-color); }
.country-modal.active { display: flex; }
.country-modal-header { padding: 15px 20px; border-bottom: 1px solid var(--border-color); display: flex; justify-content: space-between; align-items: center; background: #fafafa; }
.country-modal-title { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.country-modal-close { background: none; border: none; font-size: 18px; cursor: pointer; color: var(--text-secondary); }
.country-search-box { padding: 12px 20px; border-bottom: 1px solid var(--border-color); }
.country-search-input { width: 100%; padding: 12px 14px; border: 1px solid var(--border-color); border-radius: 8px; font-size: 16px; outline: none; }
.country-search-input:focus { border-color: var(--gold-solid); }
.country-list { flex: 1; overflow-y: auto; padding: 10px 0; }
.country-item { padding: 12px 20px; font-size: 14px; cursor: pointer; transition: background 0.2s; color: var(--text-primary); }
.country-item:hover { background-color: #f5f5f5; }

/* ============================================================
   3b. BOOKING VIEW — DEFAULT STATE (mobile-first)
   The markup ships extra "PC" elements (bk-* classes) that have
   no styling of their own, so left unstyled they render as bare
   blocks on every screen size — this is what was causing the
   "Contact Information" (and order summary) to show twice.
   Default: keep mobile exactly as the original mobile-only
   sections looked, and hide every PC-only booking element.
   The PC-only elements get their real styling + get switched on
   again inside the desktop media query below.
   ============================================================ */
.bk-pc-topbar,
.bk-secure-badge,
.bk-summary-header,
.bk-product-img-wrap,
.bk-summary-rows,
.bk-thankyou-note,
.bk-form-side,
.bk-pc-footer-wave {
    display: none;
}


/* ============================================================
   3c. MOBILE THEME PASS
   Everything below is scoped to max-width: 767px, so it can
   never reach the PC layout further down this file — same
   colors/typography identity as the PC view (forest green
   #2c3e1f + gold accent + cream #f5f0e8), applied to the
   existing mobile structure only. No markup, no functionality,
   no PC rule touched.
   ============================================================ */
@media (max-width: 767px) {

    /* --- Header --- */
    .header {
        background: var(--cream-bg);
        border-bottom: 1px solid #e5dcc5;
        padding: 34px 20px 22px 20px;
    }
    .logo-placeholder {
        border: 3px solid var(--gold-solid);
        box-shadow: 0 4px 15px rgba(44,62,31,0.12);
    }
    .hero-title {
        font-family: Georgia, 'Times New Roman', serif;
        color: var(--forest-green);
        letter-spacing: 2px;
        margin-bottom: 8px;
    }

    /* --- Product Detail Screen --- */
    .detail-product-title {
        font-family: Georgia, 'Times New Roman', serif;
        font-weight: 700;
        color: var(--forest-green);
    }
    .meta-info span { color: var(--gold-solid); }
    .product-description { background: var(--cream-bg); }
    .group-title {
        color: var(--forest-green);
        font-weight: 700;
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .option-button { border-color: #e8e0d0; border-radius: 8px; }
    .next-btn { letter-spacing: 1px; border-radius: 10px; box-shadow: 0 4px 14px rgba(179,137,36,0.3); }

    /* --- Booking Screen: mobile navbar --- */
    .booking-navbar { background: var(--cream-bg); border-bottom: 1px solid #e5dcc5; }
    .booking-navbar .nav-close-btn,
    .booking-navbar .nav-title { color: var(--forest-green); }
    .booking-navbar .nav-title { font-family: Georgia, 'Times New Roman', serif; font-weight: 700; }

    /* --- Booking Screen: content backdrop + summary card --- */
    .booking-content-container { background-color: var(--cream-bg); }
    .summary-card {
        border: 1px solid #eee3cf;
        border-radius: 18px;
        box-shadow: 0 8px 22px rgba(44,62,31,0.06);
    }
    .mobile-summary-items { border-top: 1px solid #f0ebe0; margin-top: 6px; padding-top: 14px; }
    .summary-item strong { color: var(--forest-green); }
    .contact-header { color: var(--forest-green); font-family: Georgia, 'Times New Roman', serif; }
}


/* ============================================================
   4. PC DESKTOP WEB VIEW
   ============================================================ */
@media (min-width: 768px) {

    body {
        display: block;
        padding: 0;
        background: #f5f0e8;
    }

    .mobile-container {
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        border: none;
        min-height: 100vh;
        background: transparent;
    }

    /* =============================================
       HOME VIEW — FULL PC REDESIGN
    ============================================= */

    #home-view.active {
        display: flex !important;
        flex-direction: column;
        background: #f5f0e8;
        min-height: 100vh;
    }

    /* pc-main-body grows to fill space */
    .pc-main-body {
        flex: 1;
    }

    /* ---- TOP HEADER BAR ---- */
    #home-view .header,
    #detail-view .header {
        display: grid !important;
        grid-template-columns: auto 1fr auto;
        grid-template-areas: "logo titleblock heroimg";
        align-items: center;
        padding: 0;
        margin-bottom: 0;
        border-bottom: none;
        background: #f5f0e8;
        text-align: left;
        min-height: 160px;
        position: relative;
        overflow: hidden;
    }

    /* Logo block */
    .logo-placeholder {
        grid-area: logo;
        margin: 0 0 0 50px;
        width: 100px;
        height: 100px;
        border: 3px solid var(--gold-solid);
        flex-shrink: 0;
    }

    /* Title + desc block */
    .pc-title-block {
        grid-area: titleblock;
        padding: 0 40px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 8px;
    }

    .hero-title {
        grid-area: unset;
        font-size: 38px;
        font-weight: 800;
        color: #2c3e1f;
        letter-spacing: 3px;
        text-transform: uppercase;
        margin-bottom: 0;
        line-height: 1.1;
    }

    .hero-desc {
        grid-area: unset;
        font-size: 13px;
        line-height: 1.65;
        color: #555;
        padding: 0;
        max-width: 560px;
        text-align: left;
    }

    /* Hero rice image — right side of header */
    .pc-hero-img {
        grid-area: heroimg;
        width: 340px;
        height: 160px;
        object-fit: cover;
        object-position: center;
        display: block !important;
        flex-shrink: 0;
    }

    /* Decorative dots (top-left) */
    #home-view .header::before,
    #detail-view .header::before {
        content: '⁞⁞';
        position: absolute;
        left: 20px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 28px;
        letter-spacing: 4px;
        color: var(--gold-solid);
        opacity: 0.5;
        pointer-events: none;
    }

    /* ---- DARK GREEN TRUST BAR (below header, in screenshot) ---- */
    .pc-trust-bar {
        display: flex !important;
        background: #2c3e1f;
        color: #f5f0e8;
        padding: 12px 50px;
        align-items: center;
        justify-content: space-between;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .pc-trust-bar span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pc-trust-bar span i {
        color: var(--gold-solid);
        font-size: 14px;
    }

    /* ---- MAIN BODY: 2-COL GRID ---- */
    .pc-main-body {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        flex: 1;
        gap: 0;
        background: #f5f0e8;
        border-top: none;
    }

    /* ---- LEFT COL: Our Products ---- */
    .pc-left-col {
        padding: 45px 50px;
        border-right: 1px solid #ddd5c0;
    }

    /* Hide mobile-only sections on PC */
    #home-view .products-section,
    #home-view .form-section {
        display: none !important;
    }

    /* Show PC-only elements */
    .pc-trust-bar,
    .pc-main-body,
    .pc-footer-bar,
    .pc-hero-img {
        display: flex !important;
    }

    .pc-main-body {
        display: grid !important;
    }

    /* Leaf decoration and section title */
    .pc-section-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 28px;
    }

    .pc-section-icon {
        width: 44px;
        height: 44px;
        background: #2c3e1f;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-solid);
        font-size: 16px;
        flex-shrink: 0;
    }

    .pc-section-title {
        font-size: 18px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: #2c3e1f;
        position: relative;
    }

    .pc-section-title::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 30px;
        height: 3px;
        background: var(--gold-solid);
        border-radius: 2px;
    }

    /* Products grid: 2 cols, 3rd card on left */
    .pc-product-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .pc-product-card {
        background: #ffffff;
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(0,0,0,0.06);
        border: 1px solid #e8e0d0;
        cursor: pointer;
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .pc-product-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(44,62,31,0.12);
    }

    .pc-product-img {
        width: 100%;
        height: 165px;
        object-fit: cover;
        display: block;
    }

    .pc-product-footer {
        padding: 14px 18px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: #fff;
    }

    .pc-product-name-area {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pc-product-icon {
        width: 34px;
        height: 34px;
        background: #f0ebe0;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2c3e1f;
        font-size: 14px;
        flex-shrink: 0;
    }

    .pc-product-label {
        font-size: 15px;
        font-weight: 700;
        color: #1a1a1a;
    }

    .pc-product-arrow {
        color: var(--gold-solid);
        font-size: 18px;
    }

    /* Trust tagline below products */
    .pc-tagline-bar {
        display: flex !important;
        align-items: center;
        gap: 10px;
        background: #eee8d8;
        border-radius: 10px;
        padding: 14px 18px;
        margin-top: 22px;
        font-size: 12px;
        color: #555;
        font-weight: 500;
    }

    .pc-tagline-bar i {
        color: #2c3e1f;
        font-size: 18px;
        flex-shrink: 0;
    }

    .pc-tagline-bar .tagline-dots {
        color: var(--gold-solid);
        margin: 0 6px;
    }

    /* Decorative wheat icon top-right of left col */
    .pc-wheat-deco {
        display: block !important;
        position: absolute;
        right: 50%;
        top: 210px;
        font-size: 80px;
        color: #2c3e1f;
        opacity: 0.04;
        pointer-events: none;
        transform: rotate(-15deg);
    }

    /* ---- RIGHT COL: Get In Touch ---- */
    .pc-right-col {
        padding: 45px 50px;
        background: #f5f0e8;
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    /* Form card */
    .pc-form-card {
        background: #ffffff;
        border-radius: 16px;
        padding: 32px;
        box-shadow: 0 4px 20px rgba(0,0,0,0.06);
        border: 1px solid #e8e0d0;
    }

    .pc-form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px 18px;
    }

    .pc-form-grid .pc-field-full {
        grid-column: 1 / -1;
    }

    .pc-form-grid .form-control {
        margin: 0;
        background: #fafaf7;
        border-color: #ddd5c0;
    }

    .pc-form-grid .form-control:focus {
        border-color: var(--gold-solid);
        background: #fff;
    }

    .pc-form-grid textarea.form-control {
        min-height: 110px;
    }

    .pc-submit-btn {
        grid-column: 1 / -1;
        background: var(--gold-gradient);
        color: #fff;
        border: none;
        padding: 15px;
        font-size: 14px;
        font-weight: 700;
        letter-spacing: 2px;
        border-radius: 10px;
        cursor: pointer;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: opacity 0.3s ease;
        box-shadow: 0 4px 14px rgba(179,137,36,0.3);
    }

    .pc-submit-btn:hover { opacity: 0.88; }

    /* Social icons */
    .pc-social-card {
        margin-top: 24px;
        text-align: center;
    }

    .pc-social-label {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 2.5px;
        text-transform: uppercase;
        color: #888;
        margin-bottom: 16px;
        display: flex;
        align-items: center;
        gap: 12px;
        justify-content: center;
    }

    .pc-social-label::before,
    .pc-social-label::after {
        content: '';
        flex: 1;
        height: 1px;
        background: #ddd5c0;
        max-width: 80px;
    }

    .pc-social-row {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 14px;
    }

    .pc-social-icon {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid #e0d8c8;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #3a3a3a;
        font-size: 18px;
        text-decoration: none;
        transition: background 0.2s, color 0.2s, border-color 0.2s;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    .pc-social-icon:hover {
        background: #2c3e1f;
        color: var(--gold-solid);
        border-color: #2c3e1f;
    }

    /* ---- FOOTER BAR ---- */
    .pc-footer-bar {
        display: flex !important;
        background: #2c3e1f;
        color: #c8bb9a;
        padding: 16px 50px;
        align-items: center;
        justify-content: center;
        gap: 50px;
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }

    .pc-footer-bar span {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .pc-footer-bar span i {
        color: var(--gold-solid);
        font-size: 14px;
    }

    .pc-footer-bar .footer-sep {
        color: #4a5e38;
        font-size: 18px;
        line-height: 1;
    }

    /* ---- PRODUCT DETAIL SCREEN (unchanged logic, improved spacing) ---- */
    #detail-view.active {
        display: block !important;
        background: #ffffff;
    }

    /* Full-width site header + trust bar on top of the detail page */
    .detail-top-header {
        display: block !important;
        background: #f5f0e8;
    }

    .detail-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px 50px;
        padding: 60px 40px;
        align-items: start;
        background: #ffffff;
    }

    .detail-header {
        grid-column: 1;
        grid-row: 1 / span 2;
        height: 450px;
        border-radius: 12px;
        overflow: hidden;
    }

    .detail-content { grid-column: 2; grid-row: 1; padding: 0; }
    .action-container { grid-column: 2; grid-row: 2; padding: 0; margin-top: 10px; }

    .product-description {
        grid-column: 1 / -1;
        grid-row: 3;
        padding: 40px 0 0 0;
        border-top: 1px solid var(--border-color);
        margin-top: 30px;
    }

    /* ---- BOOKING DETAIL SCREEN ---- */
    #booking-view.active .booking-content-container {
        display: grid !important;
        grid-template-columns: 1fr 1.2fr;
        gap: 10px 50px;
        padding: 60px 40px;
        background-color: #ffffff;
        align-items: start;
    }

    #booking-view .summary-card { grid-column: 1; grid-row: 1 / span 2; margin-bottom: 0; padding: 30px; background-color: #fafafa; border-radius: 12px; }
    #booking-view .contact-header { grid-column: 2; grid-row: 1; margin-bottom: 15px; }
    #booking-view .booking-form { grid-column: 2; grid-row: 2; }
}


/* ============================================================
   5. BOOKING VIEW — PC REDESIGN
   Everything below only runs on desktop widths. Mobile keeps
   using .booking-mobile-navbar / .mobile-summary-items /
   .mobile-contact-section exactly as before — nothing here
   touches those.
   ============================================================ */
@media (min-width: 768px) {

    /* Hide the mobile-only booking pieces, show the PC ones */
    .booking-mobile-navbar,
    .mobile-summary-items,
    .mobile-contact-section {
        display: none !important;
    }

    .bk-pc-topbar,
    .bk-secure-badge,
    .bk-summary-header,
    .bk-product-img-wrap,
    .bk-summary-rows,
    .bk-thankyou-note,
    .bk-form-side {
        display: flex;
    }

    #booking-view.active {
        display: flex !important;
        flex-direction: column;
        background: linear-gradient(180deg, #faf6ec 0%, #f3ead4 100%);
        min-height: 100vh;
    }

    /* ---- Top bar: Back / Title / Secure badge ---- */
    .bk-pc-topbar {
        display: flex !important;
        align-items: flex-start;
        justify-content: space-between;
        padding: 34px 50px 6px;
        gap: 20px;
    }

    .bk-back-btn {
        display: flex;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1px solid #e8e0d0;
        padding: 11px 24px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: #2c2c2c;
        cursor: pointer;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        flex-shrink: 0;
        transition: background 0.2s;
    }
    .bk-back-btn:hover { background: #f5efe1; }

    .bk-pc-title-block {
        flex: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
        text-align: center;
    }

    .bk-wheat-icon { color: var(--gold-solid); font-size: 24px; margin-bottom: 2px; }

    .bk-pc-title {
        font-family: Georgia, 'Times New Roman', serif;
        font-size: 34px;
        font-weight: 700;
        color: #2c3e1f;
    }

    .bk-pc-subtitle { font-size: 14px; color: #6b6b6b; }

    .bk-secure-badge {
        display: flex !important;
        align-items: center;
        gap: 8px;
        background: #ffffff;
        border: 1px solid #e8e0d0;
        padding: 11px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        color: #2c3e1f;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        flex-shrink: 0;
        white-space: nowrap;
    }
    .bk-secure-badge i { color: var(--gold-solid); }

    /* ---- Content grid ---- */
    #booking-view.active .booking-content-container {
        flex: 1;
        background: transparent;
        padding: 30px 50px 10px;
        align-items: start;
    }

    #booking-view .summary-card { grid-column: 1; grid-row: 1 / -1; }
    .bk-form-side { grid-column: 2; grid-row: 1 / -1; }

    /* ---- Left: Order Summary card ---- */
    #booking-view .summary-card {
        background: #ffffff;
        border: 1px solid #eee3cf;
        border-radius: 18px;
        padding: 0;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(44,62,31,0.06);
    }

    .bk-summary-header {
        display: flex !important;
        align-items: center;
        gap: 10px;
        background: #2c3e1f;
        color: #ffffff;
        padding: 16px 24px;
        font-size: 15px;
        font-weight: 700;
    }
    .bk-summary-header i { color: var(--gold-solid); }

    .bk-product-img-wrap { display: block !important; width: 100%; height: 220px; overflow: hidden; }
    .bk-product-img { width: 100%; height: 100%; object-fit: cover; display: block; }

    .bk-summary-rows { display: flex !important; flex-direction: column; padding: 6px 24px; }
    .bk-summary-row { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f0ebe0; }
    .bk-summary-row:last-child { border-bottom: none; }
    .bk-row-icon {
        width: 38px; height: 38px; border-radius: 50%;
        background: #eef3e7; color: #2c3e1f;
        display: flex; align-items: center; justify-content: center;
        font-size: 14px; flex-shrink: 0;
    }
    .bk-row-text { display: flex; flex-direction: column; gap: 3px; }
    .bk-row-label { font-size: 12px; color: #9a9a9a; font-weight: 500; }
    .bk-row-value { font-size: 15px; font-weight: 700; color: #1a1a1a; }
    .bk-selected-tag { font-size: 12px; font-weight: 600; color: #9a9a9a; }

    .bk-thankyou-note {
        display: flex !important;
        align-items: center;
        gap: 10px;
        background: #eef3e7;
        color: #2c3e1f;
        font-size: 13px;
        font-weight: 600;
        padding: 16px 20px;
        margin: 14px 24px 24px;
        border-radius: 10px;
    }
    .bk-thankyou-note i { color: #4c7a3d; font-size: 15px; flex-shrink: 0; }

    /* ---- Right: Contact form card ---- */
    .bk-form-side {
        display: flex !important;
        flex-direction: column;
        background: #ffffff;
        border: 1px solid #eee3cf;
        border-radius: 18px;
        padding: 36px;
        box-shadow: 0 10px 30px rgba(44,62,31,0.06);
    }

    .bk-contact-header { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
    .bk-contact-icon {
        width: 46px; height: 46px; border-radius: 50%;
        background: #2c3e1f; color: var(--gold-solid);
        display: flex; align-items: center; justify-content: center;
        font-size: 18px; flex-shrink: 0;
    }
    .bk-contact-title { font-family: Georgia, 'Times New Roman', serif; font-size: 22px; font-weight: 700; color: #1a1a1a; }
    .bk-contact-underline { width: 40px; height: 3px; background: var(--gold-solid); border-radius: 2px; margin-top: 6px; }

    .bk-form-side .booking-form { gap: 20px; }
    .bk-form-side .form-group { position: relative; }
    .bk-form-side .form-label {
        display: flex; align-items: center; gap: 8px;
        font-size: 13px; font-weight: 600; color: #4a4a4a;
    }
    .bk-label-icon { color: #9a8b57; font-size: 13px; width: 14px; text-align: center; }

    .bk-form-side .booking-input,
    .bk-form-side .phone-code-select {
        background: #fbfaf6;
        border: 1px solid #e2dbc8;
        border-radius: 10px;
    }
    .bk-form-side .booking-input:focus,
    .bk-form-side .phone-code-select:focus { border-color: var(--gold-solid); background: #fff; }
    .bk-form-side .phone-input-wrapper { position: relative; }

    /* Green checkmark once a field has a value (visual match to reference) */
    .bk-form-side input[name="full_name"]:not(:placeholder-shown),
    .bk-form-side input[name="email"]:not(:placeholder-shown),
    .bk-form-side #phone-number:not(:placeholder-shown) {
        border-color: #8fc79b;
        padding-right: 42px;
    }
    .bk-form-side .form-group:has(input[name="full_name"]:not(:placeholder-shown))::after,
    .bk-form-side .form-group:has(input[name="email"]:not(:placeholder-shown))::after {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #4c9a5b;
        position: absolute;
        right: 16px;
        bottom: 14px;
        font-size: 13px;
    }
    .bk-form-side .phone-input-wrapper:has(#phone-number:not(:placeholder-shown))::after {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        color: #4c9a5b;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 13px;
    }

    .bk-form-side .submit-booking-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 4px;
        box-shadow: 0 4px 14px rgba(179,137,36,0.3);
    }

    /* ---- Bottom wave decoration ---- */
    .bk-pc-footer-wave {
        display: block !important;
        height: 90px;
        margin-top: 30px;
        background: #2c3e1f;
        border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    }
}
