/* ============================================
   Mukesh Maurya · Three Wise Men
   Modern Forest Theme
   ============================================ */

:root {
    --forest-dark: #0f2a24;
    --forest-deep: #1a3c34;
    --forest-mid: #2d5a4a;
    --moss: #4a7c59;
    --sage: #7a9e8f;
    --mist: #a8c5bc;
    --cream: #f7f3eb;
    --warm-light: #f0e9dc;
    --gold: #c9a66b;
    --text-dark: #1a2e28;
    --text-muted: #5a736a;
    --white: #ffffff;
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== HEADER ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 18px 0;
    transition: all var(--transition);
    background: transparent;
}

.site-header.scrolled {
    background: rgba(15, 42, 36, 0.95);
    backdrop-filter: blur(12px);
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}



.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-decoration: none;
    color: var(--white);
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.logo-sub {
    font-size: 11px;
    opacity: 0.75;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

.main-nav a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color var(--transition);
}

.main-nav a:hover {
    color: var(--gold);
}

.btn-nav {
    background: var(--gold) !important;
    color: var(--forest-dark) !important;
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: #d4b37a !important;
    color: var(--forest-dark) !important;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: white;
}

/* ========== HERO (Elegant Single Image Parallax) ========== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1920&q=80') center/cover no-repeat;
    transform: scale(1.1);
    will-change: transform;
    z-index: 1;
    transition: transform 0.1s linear;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(15, 42, 36, 0.72) 0%,
        rgba(15, 42, 36, 0.55) 50%,
        rgba(15, 42, 36, 0.35) 100%
    );
    z-index: 2;
    transition: opacity 0.4s ease;
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 780px;
    padding: 0 24px;
}

/* ========== SECTIONS ========== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-dark {
    background: var(--forest-deep);
    color: white;
}

.section-light {
    background: var(--cream);
}

.section-mist {
    background: linear-gradient(to bottom, #e8f0ec, var(--cream));
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 4vw, 2.6rem);
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--forest-deep);
}

.section-dark .section-header h2 {
    color: white;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.75);
}

/* ========== ABOUT PREVIEW ========== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 1.7rem;
    margin-bottom: 18px;
    color: var(--forest-deep);
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-image {
    height: 380px;
    background: linear-gradient(135deg, var(--forest-mid), var(--moss));
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* ========== SERVICES CARDS ========== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.service-card {
    background: white;
    border-radius: 14px;
    padding: 32px 26px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.03);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--forest-deep);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.service-card .link {
    color: var(--moss);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: white;
    padding: 28px;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

.testimonial-card .quote {
    font-size: 1.05rem;
    color: var(--text-dark);
    margin-bottom: 18px;
    line-height: 1.6;
}

.testimonial-card .author {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ========== BOOKING CTA (Coming into the light) ========== */
.booking-cta {
    background: linear-gradient(to bottom, #e8f0ec 0%, #f7f3eb 100%);
    text-align: center;
    padding: 110px 0;
}

.booking-cta h2 {
    font-size: clamp(2rem, 4.5vw, 2.8rem);
    color: var(--forest-deep);
    margin-bottom: 18px;
}

.booking-cta p {
    color: var(--text-muted);
    max-width: 520px;
    margin: 0 auto 32px;
    font-size: 1.1rem;
}

/* ========== CONTACT PREVIEW ========== */
.contact-preview {
    text-align: center;
}

.contact-preview a {
    color: var(--moss);
    font-weight: 600;
}

/* ========== FOOTER ========== */
.site-footer {
    background: var(--forest-dark);
    color: rgba(255,255,255,0.8);
    padding: 70px 0 30px;
}

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

.footer-brand h3 {
    color: white;
    margin-bottom: 10px;
}

.footer-links h4,
.footer-contact h4 {
    color: white;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    margin-bottom: 8px;
    font-size: 14px;
    transition: color var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 13px 30px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: var(--gold);
    color: var(--forest-dark);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: #d4b37a;
    border-color: #d4b37a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,166,107,0.35);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: rgba(255,255,255,0.6);
    margin-left: 14px;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
}

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
    background: linear-gradient(to bottom right, var(--forest-dark), var(--forest-mid));
    color: white;
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1600&q=70') center/cover no-repeat;
    opacity: 0.18;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 18px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 1.15rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

/* ========== ABOUT PAGE ========== */
.about-full {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
}

.about-full-image {
    height: 520px;
    background: linear-gradient(135deg, var(--forest-mid), var(--moss));
    border-radius: 18px;
    position: sticky;
    top: 100px;
}

.about-full-text h2 {
    font-size: 2rem;
    color: var(--forest-deep);
    margin-bottom: 22px;
}

.about-full-text p {
    color: var(--text-muted);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.timeline {
    margin-top: 60px;
    border-left: 2px solid var(--mist);
    padding-left: 30px;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    border: 2px solid var(--cream);
}

.timeline-year {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-item h4 {
    font-size: 1.05rem;
    color: var(--forest-deep);
    margin-bottom: 8px;
}

.timeline-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.approach-card {
    background: white;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.approach-card .icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
    display: block;
}

.approach-card h4 {
    font-size: 1rem;
    color: var(--forest-deep);
    margin-bottom: 8px;
}

.approach-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ========== SERVICES PAGE ========== */
.services-full-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-full-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: start;
    background: white;
    border-radius: 18px;
    padding: 44px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.04);
}

.service-full-card:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.service-full-card:nth-child(even) .service-meta {
    order: 2;
}

.service-full-card:nth-child(even) .service-detail {
    order: 1;
}

.service-meta {
    text-align: center;
    padding: 20px 0;
}

.service-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.service-meta h3 {
    font-size: 1.35rem;
    color: var(--forest-deep);
    margin-bottom: 16px;
}

.service-price {
    display: inline-block;
    background: var(--gold);
    color: var(--forest-dark);
    padding: 6px 18px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.service-duration {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 22px;
}

.service-detail h4 {
    font-size: 1.1rem;
    color: var(--forest-deep);
    margin-bottom: 12px;
    margin-top: 22px;
}

.service-detail h4:first-child {
    margin-top: 0;
}

.service-detail p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.service-detail ul {
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

.service-detail ul li {
    margin-bottom: 4px;
}

/* ========== CONTACT PAGE ========== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 70px;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    color: var(--forest-deep);
    margin-bottom: 16px;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-link-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    box-shadow: 0 3px 14px rgba(0,0,0,0.05);
    transition: all var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-link-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.09);
    color: var(--forest-deep);
}

.contact-link-item .ci-icon {
    font-size: 1.4rem;
    width: 36px;
    text-align: center;
    flex-shrink: 0;
}

.contact-form-wrap {
    background: white;
    border-radius: 18px;
    padding: 44px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
}

.contact-form-wrap h3 {
    font-size: 1.4rem;
    color: var(--forest-deep);
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 13px 16px;
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text-dark);
    background: var(--cream);
    transition: all var(--transition);
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--moss);
    background: white;
    box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}

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

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

.form-msg {
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    margin-bottom: 20px;
    display: none;
}

.form-msg.success {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-msg.error {
    background: #fdecea;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* ========== ANIMATIONS ========== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
    .main-nav {
        display: none;
    }
    .menu-toggle {
        display: flex;
    }
    .about-preview {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .about-full {
        grid-template-columns: 1fr;
    }
    .about-full-image {
        height: 320px;
        position: static;
    }
    .service-full-card,
    .service-full-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    .service-full-card:nth-child(even) .service-meta,
    .service-full-card:nth-child(even) .service-detail {
        order: unset;
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form-wrap {
        padding: 28px 22px;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.1rem;
    }
    .btn-outline {
        margin-left: 0;
        margin-top: 12px;
        display: inline-block;
    }
    .service-full-card {
        padding: 28px 22px;
    }
}


/* ============================================
   INTEGRATED SITE ADDITIONS
   Booking modal · Shop · Retreats · Events · Cart
   ============================================ */

/* ---- Nav cart ---- */
.nav-cart {
    position: relative;
    font-size: 18px;
    text-decoration: none;
}
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: var(--forest-dark);
    font-size: 11px;
    font-weight: 700;
    min-width: 17px;
    height: 17px;
    line-height: 17px;
    text-align: center;
    border-radius: 9px;
    padding: 0 4px;
}

/* ---- Generic grid + cards for new pages ---- */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}
.tile {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all var(--transition);
    display: flex;
    flex-direction: column;
}
.tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.1);
}
.tile-img {
    height: 210px;
    background: linear-gradient(135deg, var(--forest-mid), var(--moss));
    background-size: cover;
    background-position: center;
}
.tile-body {
    padding: 22px 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.tile-body h3 {
    font-size: 1.2rem;
    color: var(--forest-deep);
    margin-bottom: 8px;
}
.tile-body p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 14px;
}
.tile-meta {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 8px;
}
.tile-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--forest-deep);
    margin-bottom: 14px;
}
.tile .btn {
    margin-top: auto;
    align-self: flex-start;
}
.badge-pill {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}
.badge-upcoming { background: #dcfce7; color: #166534; }
.badge-past { background: #f1f5f9; color: #64748b; }
.badge-free { background: var(--gold); color: var(--forest-dark); }

/* ---- Filters ---- */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.filter-bar a {
    padding: 8px 18px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--forest-deep);
    background: #fff;
    border: 1px solid rgba(0,0,0,0.08);
    transition: all var(--transition);
}
.filter-bar a.active,
.filter-bar a:hover {
    background: var(--gold);
    color: var(--forest-dark);
    border-color: var(--gold);
}

/* ---- Photo gallery / albums ---- */
.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 24px;
}
.photo-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: transform var(--transition);
}
.photo-grid img:hover { transform: scale(1.03); }
.retreat-block {
    background: #fff;
    border-radius: 18px;
    padding: 34px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
    margin-bottom: 36px;
}
.retreat-block h3 {
    color: var(--forest-deep);
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 14px;
    margin-top: 20px;
}
.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ---- Lightbox ---- */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    z-index: 4000;
    align-items: center;
    justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img {
    max-width: 92%;
    max-height: 88%;
    border-radius: 8px;
}
.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
}

/* ---- Booking / payment modal ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15,42,36,0.75);
    backdrop-filter: blur(4px);
    z-index: 3000;
    overflow-y: auto;
    padding: 40px 16px;
}
.modal-overlay.open { display: block; }
.modal {
    background: var(--cream);
    max-width: 560px;
    margin: 0 auto;
    border-radius: 18px;
    padding: 34px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.modal h2 {
    color: var(--forest-deep);
    font-size: 1.5rem;
    margin-bottom: 6px;
}
.modal .modal-sub {
    color: var(--text-muted);
    margin-bottom: 22px;
    font-size: 0.95rem;
}
.modal-close {
    position: absolute;
    top: 18px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-muted);
    cursor: pointer;
    line-height: 1;
}
.price-summary {
    background: var(--forest-deep);
    color: #fff;
    border-radius: 12px;
    padding: 16px 20px;
    margin: 18px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.price-summary .amt {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}
.pay-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 18px 0;
}
.pay-method {
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    cursor: pointer;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition);
}
.pay-method.selected {
    border-color: var(--moss);
    box-shadow: 0 0 0 3px rgba(74,124,89,0.12);
}
.pay-method input { accent-color: var(--moss); }
.pay-details {
    display: none;
    background: #fff;
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    font-size: 0.95rem;
    color: var(--text-dark);
}
.pay-details.show { display: block; }
.pay-details img { max-width: 200px; display: block; margin: 12px 0; border-radius: 8px; }
.modal .form-group { margin-bottom: 16px; }
.modal .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.inline-msg {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 16px;
}
.inline-msg.error { background: #fdecea; color: #c62828; }
.inline-msg.success { background: #e8f5e9; color: #2e7d32; }
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(84px, 1fr));
    gap: 8px;
    margin-top: 6px;
}
.slot-btn {
    padding: 9px 6px;
    border: 1px solid rgba(0,0,0,0.15);
    border-radius: 8px;
    background: #fff;
    font-size: 0.85rem;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
}
.slot-btn:hover { border-color: var(--moss); }
.slot-btn.selected { background: var(--moss); color: #fff; border-color: var(--moss); }

/* ---- Cart table ---- */
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 14px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.05); }
.cart-table th, .cart-table td { padding: 16px; text-align: left; border-bottom: 1px solid #eee; }
.cart-table th { background: #f8faf9; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-muted); }
.cart-table img { width: 60px; height: 60px; object-fit: cover; border-radius: 8px; }
.cart-total-row td { font-weight: 700; font-size: 1.1rem; color: var(--forest-deep); }
.qty-input { width: 64px; padding: 8px; border: 1px solid #ddd; border-radius: 6px; }

/* ---- Product detail ---- */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.product-gallery .main-img { width: 100%; height: 420px; object-fit: cover; border-radius: 16px; }
.product-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.product-thumbs img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; }
.product-thumbs img.active { border-color: var(--gold); }
@media (max-width: 900px) {
    .product-layout { grid-template-columns: 1fr; }
    .modal .form-row { grid-template-columns: 1fr; }
}
