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

:root {
    --cream: #F5F0E8;
    --cream-dark: #EDE5D8;
    --dark: #1A1208;
    --brown: #5C3317;
    --terracotta: #B85C38;
    --terracotta-hover: #9A4A2C;
    --text: #2C1A0E;
    --text-muted: #7A6552;
    --card-bg: #FFFFFF;
    --border: #E0D6C8;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    color: var(--dark);
}

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
    background: rgba(245, 240, 232, 0.97) !important;
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(26,18,8,0.08);
}

.navbar-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
}

.navbar-nav .nav-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--terracotta) !important;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 0.4rem 0.6rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* ─── HERO ────────────────────────────────── */
.hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-banner {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26,18,8,0.25) 0%,
        rgba(26,18,8,0.55) 60%,
        rgba(26,18,8,0.7) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 780px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 300;
    color: rgba(255,255,255,0.88);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    background-color: var(--terracotta);
    color: var(--white) !important;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 1rem 2.2rem;
    border-radius: 4px;
    border: none;
    text-decoration: none;
    transition: background-color 0.2s, transform 0.2s;
    cursor: pointer;
}

.btn-hero:hover {
    background-color: var(--terracotta-hover);
    transform: translateY(-1px);
    color: var(--white) !important;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ─── SECTION LABELS ─────────────────────── */
.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 580px;
    line-height: 1.7;
}

/* ─── BUTTONS ────────────────────────────── */
.btn-primary {
    background-color: var(--terracotta) !important;
    border-color: var(--terracotta) !important;
    color: var(--white) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    transition: background-color 0.2s, transform 0.15s;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--terracotta-hover) !important;
    border-color: var(--terracotta-hover) !important;
    transform: translateY(-1px);
}

.btn-outline-primary {
    border: 2px solid var(--terracotta) !important;
    color: var(--terracotta) !important;
    background: transparent !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.7rem 1.75rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-outline-primary:hover {
    background-color: var(--terracotta) !important;
    color: var(--white) !important;
}

.btn-secondary {
    background-color: var(--dark) !important;
    border-color: var(--dark) !important;
    color: var(--white) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: var(--brown) !important;
    border-color: var(--brown) !important;
}

/* WHY MOOSHI FEATURES GRID */
.features-section {
    background: var(--cream);
    padding: 6rem 0;
}

.features-section .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.features-section .section-subtitle {
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    transition: box-shadow 0.25s, transform 0.25s;
}

.feature-card:hover {
    box-shadow: 0 8px 32px rgba(26,18,8,0.08);
    transform: translateY(-3px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background-color: #F5EBE0;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    font-size: 1.3rem;
    color: var(--terracotta);
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--dark);
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ─── OFFERINGS CARDS ON HOME ─────────────── */
.offerings-section {
    background: var(--cream-dark);
    padding: 6rem 0;
}

.offering-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.offering-card:hover {
    box-shadow: 0 12px 40px rgba(26,18,8,0.1);
    transform: translateY(-4px);
}

.offering-card .card-img-top {
    height: 240px;
    object-fit: cover;
}

.offering-card .card-body {
    padding: 1.75rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.offering-card h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.offering-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1.25rem;
}

/* ─── PAGE HEADERS ───────────────────────── */
.page-header {
    background: var(--dark);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(184,92,56,0.15) 0%, transparent 70%);
}

.page-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--white);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.page-header p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-top: 0.75rem;
    position: relative;
    z-index: 1;
}

/* ─── TOUR EXPERIENCE SECTION ─────────────── */
.tour-hero-section {
    padding: 5rem 0;
    background: var(--cream);
}

.tour-hero-section img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(26,18,8,0.15);
}

.tour-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

.tour-detail-badge {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.88rem;
    color: var(--text);
    font-weight: 500;
}

.tour-detail-badge .icon {
    color: var(--terracotta);
    font-size: 1rem;
    flex-shrink: 0;
}

.tour-highlights {
    background: var(--cream-dark);
    padding: 5rem 0;
}

.highlight-item {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    align-items: flex-start;
}

.highlight-number {
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.highlight-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.highlight-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

.experience-intro {
    max-width: 660px;
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.experience-summary {
    color: var(--terracotta);
    font-size: 1.05rem;
    margin-bottom: 2rem;
}

.experience-list-heading {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.not-included-block {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.not-included-block ul {
    margin: 0;
    padding-left: 1.25rem;
    color: var(--text-muted);
    line-height: 1.9;
}

.journey-start {
    margin-top: 1.5rem;
}

.journey-start h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.journey-start p {
    color: var(--text-muted);
    line-height: 1.75;
}

/* ─── BOOKING FORM ───────────────────────── */
.booking-section {
    background: var(--white);
    padding: 5rem 0;
}

.form-wrapper {
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
}

.google-form-wrapper {
    width: 100%;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(26, 18, 8, 0.08);
}

.google-form-wrapper iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    border: 0;
}

.form-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    margin-bottom: 0.4rem;
}

.form-control, .form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    background-color: var(--white);
    color: var(--text);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--terracotta);
    box-shadow: 0 0 0 3px rgba(184,92,56,0.12);
    outline: none;
}

.price-display {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-left: 4px solid var(--terracotta);
    border-radius: 8px;
    padding: 1rem 1.25rem;
    font-weight: 600;
    color: var(--text);
    font-size: 1rem;
}

/* ─── SHOP / PRODUCTS ────────────────────── */
.shop-section {
    padding: 5rem 0;
    background: var(--cream);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: box-shadow 0.25s, transform 0.25s;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 12px 40px rgba(26,18,8,0.1);
    transform: translateY(-3px);
}

.product-image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.product-details {
    padding: 1.5rem 1.5rem 0.5rem;
    flex: 1;
}

.product-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.product-details p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.product-details .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--terracotta);
    font-family: 'Inter', sans-serif;
}

.product-details .min-order {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.product-details .delivery-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.15rem;
}

.view-details {
    display: none;
}

.product-card .btn-primary {
    margin: 1rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

.whatsapp-order-card {
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 2rem;
    align-items: center;
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: 16px;
}

.whatsapp-order-card h2 {
    margin-bottom: 0.75rem;
}

.whatsapp-order-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

.whatsapp-order-card img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 10px;
}

/* ─── PRODUCT DETAIL ─────────────────────── */
.product-detail-section {
    padding: 5rem 0;
    background: var(--cream);
}

.product-detail-section img {
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(26,18,8,0.1);
}

.pricing-box {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-left: 4px solid var(--terracotta);
    border-radius: 10px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.pricing-box .main-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
    font-family: 'Inter', sans-serif;
}

.pricing-box .price-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

/* ─── CONTACT SECTION ────────────────────── */
.contact-section {
    padding: 5rem 0;
    background: var(--cream);
}

.contact-info-box {
    background: var(--dark);
    color: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    height: 100%;
}

.contact-info-box h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-info-item .icon {
    color: var(--terracotta);
    font-size: 1.1rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.contact-info-item h5 {
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.contact-info-item p {
    color: var(--white);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
}

/* ─── SUCCESS / ALERT MESSAGES ───────────── */
.alert-success {
    background: #F0F7EE;
    border: 1px solid #B7DFAD;
    border-radius: 10px;
    color: #2D6A1F;
    padding: 1rem 1.25rem;
    font-size: 0.92rem;
}

.alert-danger {
    background: #FDF0EE;
    border: 1px solid #F5C0B4;
    border-radius: 10px;
    color: #8B2212;
    padding: 1rem 1.25rem;
    font-size: 0.92rem;
}

/* ─── FOOTER ─────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 5rem 0 2rem;
}

.footer-brand .logo-img-footer {
    height: 44px;
    width: auto;
    margin-bottom: 1rem;
    filter: brightness(10);
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin-top: 0.75rem;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--terracotta);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.9rem;
}

.footer-social a:hover {
    border-color: var(--terracotta);
    color: var(--terracotta);
    background: rgba(184,92,56,0.1);
}

.footer-newsletter-form .input-group {
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.15);
}

.footer-newsletter-form .form-control {
    background: rgba(255,255,255,0.07);
    border: none;
    color: white;
    border-radius: 0;
    padding: 0.7rem 1rem;
}

.footer-newsletter-form .form-control::placeholder {
    color: rgba(255,255,255,0.35);
}

.footer-newsletter-form .form-control:focus {
    background: rgba(255,255,255,0.12);
    box-shadow: none;
}

.footer-newsletter-form .btn {
    background: var(--terracotta);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 0.7rem 1.25rem;
    border-radius: 0;
    transition: background 0.2s;
}

.footer-newsletter-form .btn:hover {
    background: var(--terracotta-hover);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08);
    margin: 3rem 0 1.5rem;
}

.footer-bottom {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
}

/* ─── ABOUT PAGE ─────────────────────────── */
.about-section {
    padding: 5rem 0;
    background: var(--cream);
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(26,18,8,0.12);
}

.about-stat {
    border-left: 3px solid var(--terracotta);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.about-stat .number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--terracotta);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.about-stat .label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* GALLERY */
.gallery-section {
    padding: 5rem 0;
    background: var(--cream);
}

.gallery-grid {
    columns: 3 280px;
    column-gap: 1.25rem;
}

.gallery-item {
    display: inline-block;
    width: 100%;
    margin: 0 0 1.25rem;
    border-radius: 10px;
    overflow: hidden;
    background: var(--cream-dark);
    box-shadow: 0 5px 20px rgba(26, 18, 8, 0.08);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ─── VISIT PAGE ─────────────────────────── */
.visit-section {
    padding: 5rem 0;
    background: var(--cream);
}

.info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.info-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* ─── BACK TO TOP ────────────────────────── */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 999;
    transition: all 0.2s;
    display: none;
    box-shadow: 0 4px 16px rgba(184,92,56,0.35);
}

.back-to-top:hover {
    background: var(--terracotta-hover);
    transform: translateY(-2px);
}

/* ─── REVIEW STARS ───────────────────────── */
.rating {
    display: flex;
    flex-direction: row-reverse;
    gap: 4px;
}

.rating input {
    display: none;
}

.rating label {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.1s;
}

.rating input:checked ~ label,
.rating label:hover,
.rating label:hover ~ label {
    color: var(--terracotta);
}

.stars {
    color: var(--terracotta);
    font-size: 1rem;
}

/* ─── CONFIRMATION MODAL ─────────────────── */
.modal-content {
    border-radius: 16px;
    border: none;
}

.modal-header {
    background: var(--terracotta);
    color: white;
    border-radius: 16px 16px 0 0;
    padding: 1.5rem 2rem;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    color: white !important;
}

.modal-header .btn-close {
    filter: invert(1);
}

.modal-body {
    padding: 2rem;
    background: var(--cream);
}

.modal-footer {
    background: var(--cream);
    border-top: 1px solid var(--border);
    border-radius: 0 0 16px 16px;
    padding: 1rem 2rem;
}

/* ─── CART PANEL ─────────────────────────── */
.cart-panel {
    position: fixed;
    right: -360px;
    top: 0;
    width: 360px;
    height: 100vh;
    background: var(--white);
    box-shadow: -4px 0 30px rgba(26,18,8,0.15);
    padding: 2rem;
    z-index: 1050;
    transition: right 0.3s ease;
    overflow-y: auto;
    border-left: 1px solid var(--border);
}

.cart-panel.open {
    right: 0;
}

.cart-panel h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

/* ─── UTILITY ────────────────────────────── */
.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.text-terracotta { color: var(--terracotta); }

.py-section { padding: 5rem 0; }

.divider-thin {
    border: none;
    height: 1px;
    background: var(--border);
    margin: 0;
}
