/* =========================================
   1. CORE VARIABLES & RESET
   ========================================= */
:root {
    --bg-dark: #072821;      /* Deep Rainforest Green */
    --accent-gold: #C5A065;  /* Deccan Gold */
    --text-white: #FFFFFF;
    --text-grey: #B0B0B0;
    --font-heading: 'Jost', sans-serif;
    --font-script: 'Dancing Script', cursive;
    --font-body: 'Roboto', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, .nav-link, .btn {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 50px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(7, 40, 33, 0.98);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    height: 100px;
}

.nav-left { display: flex; gap: 30px; }
.nav-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--accent-gold); }

/* CENTER LOGO - BIGGER */
.logo-center {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1001;
    height: 100%;
}

.header-logo-img {
    height: 140px; /* Big Logo */
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    margin-top: 10px; 
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.3));
}

.header-logo-img:hover { transform: scale(1.05); }

/* =========================================
   BUTTON STYLE (Unified Size)
   ========================================= */

.btn-order {
    /* Ensures the button only takes up as much space as the text needs */
    display: inline-block;
    width: fit-content; 
    
    /* Colors */
    background-color: var(--accent-gold);
    color: white;
    
    /* Exact sizing to match the header look */
    padding: 12px 30px; 
    border-radius: 50px; 
    
    /* Typography */
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 11px; /* Slightly smaller font for a premium look */
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1; /* Ensures text is vertically centered without extra height */
    
    /* Animation & Reset */
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2); 
    white-space: nowrap; /* Prevents text from breaking into two lines */
}

.btn-order:hover {
    transform: translateY(-2px);
    background-color: #b08d5e; 
}
/* =========================================
   3. HERO / JOURNEY SECTION (Wider Image)
   ========================================= */
.journey-section {
    display: flex;
    height: 85vh; 
    min-height: 600px;
    padding-top: 100px; /* Space for header */
    position: relative;
    overflow: hidden;
}

.journey-text {
    flex: 0.7; /* CHANGED: Reduced width (approx 35%) */
    padding: 60px 60px; /* Adjusted padding */
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background-color: var(--bg-dark); /* Ensures text stays readable */
}

/* The Container for the Image Slot */
.journey-image-container {
    flex: 1.3; /* CHANGED: Increased width (approx 65%) */
    position: relative;
    height: 100%;
}

/* The Actual Image Styling */
.journey-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Still covers, but shows much more width now */
    object-position: center; /* Centers the focus */
    display: block;
}

.watermark-text {
    position: absolute;
    top: 5%;
    left: 40px;
    font-family: 'Times New Roman', serif;
    font-size: 100px;
    color: rgba(255,255,255,0.03);
    z-index: -1;
    white-space: nowrap;
    pointer-events: none;
}

.script-subtitle {
    font-family: var(--font-script);
    color: var(--accent-gold);
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: none;
}

.main-title {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
}

.journey-desc {
    color: var(--text-grey);
    font-size: 16px;
    line-height: 1.7;
    max-width: 550px;
    margin-bottom: 30px;
}

.badge-circle {
    position: absolute;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid white;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    z-index: 10;
}

.badge-inner {
    width: 90%;
    height: 90%;
    border: 1px dashed var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    font-weight: bold;
    text-align: center;
    font-size: 10px;
}

/* Mobile Fix */
@media (max-width: 900px) {
    .journey-section { flex-direction: column; height: auto; }
    .journey-image-container { height: 400px; width: 100%; flex: none; }
    .journey-text { padding: 40px 20px; flex: none; }
    .badge-circle { display: none; }
}
/* =========================================
   4. SERVICES & GALLERY (Tall Arch Restored)
   ========================================= */
.section-container {
    padding: 100px 50px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: white;
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.diamond { color: var(--accent-gold); font-size: 20px; }

.arch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.arch-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* Original Tall Height */
.arch-img {
    width: 100%;
    height: 450px; 
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.arch-card:hover .arch-img {
    transform: scale(1.05);
    opacity: 1;
}

.arch-card h3 {
    margin-top: 20px;
    font-family: var(--font-heading);
    color: var(--text-white);
    letter-spacing: 2px;
}

/* =========================================
   5. CHAI MENU SECTION (Framed Image)
   ========================================= */
.chai-menu-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background-color: #05221c;
    min-height: 900px;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 20px 0;
}

.chai-menu-img {
    flex: 1; 
    min-width: 400px;
    
    /* Fixed Height & Frame */
    height: 650px; 
    background: url('https://images.unsplash.com/photo-1556679343-c7306c1976bc?q=80&w=1000') center/cover;
    
    /* Breathing Room */
    margin: 60px; 
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(197, 160, 101, 0.2);
}

.chai-menu-content {
    flex: 1.2;
    min-width: 500px;
    padding: 60px 80px 60px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: 60px; 
    color: var(--text-white);
    margin-bottom: 60px; 
    text-transform: uppercase;
    letter-spacing: 6px;
    border-bottom: 3px solid var(--accent-gold);
    display: inline-block;
    width: fit-content;
}

.menu-item { margin-bottom: 50px; }
.item-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 10px; }
.item-name { font-family: var(--font-heading); font-size: 28px; color: var(--text-white); font-weight: 600; letter-spacing: 2px; }
.dots { flex: 1; border-bottom: 3px dotted rgba(197, 160, 101, 0.4); margin: 0 20px; position: relative; top: -8px; }
.item-base-price { font-family: var(--font-heading); font-size: 28px; color: var(--accent-gold); font-weight: 600; }
.item-sizes { display: flex; gap: 40px; margin-left: 2px; }
.size-option { font-family: var(--font-heading); font-size: 15px; color: #999; letter-spacing: 2px; font-weight: 500; }
.size-price { color: var(--text-white); font-weight: 700; margin-left: 8px; font-size: 16px; }

/* =========================================
   6. LOYALTY SECTION (Framed Image)
   ========================================= */
.loyalty-section {
    display: flex;
    flex-wrap: wrap; 
    align-items: center; 
    background-color: #05221c;
    min-height: 800px; 
    padding: 20px 0;
}

.loyalty-img {
    flex: 1;
    min-width: 400px;

    /* Fixed Height & Frame */
    height: 650px; 
    background: url('https://images.unsplash.com/photo-1601050690597-df0568f70950?q=80&w=1000') center/cover;
    
    /* Breathing Room */
    margin: 60px; 
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    border: 1px solid rgba(197, 160, 101, 0.2);
}

.loyalty-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px 60px 20px;
}

.loyalty-content h2 {
    font-size: 50px; 
    line-height: 1.2;
    margin-bottom: 30px;
}

.loyalty-content p {
    color: var(--text-grey);
    font-size: 18px; 
    margin-bottom: 40px;
    max-width: 500px;
    line-height: 1.8;
}

/* =========================================
   7. REVIEWS & FOOTER
   ========================================= */
.testimonials-section {
    padding: 80px 50px;
    background-color: #041a15;
    text-align: center;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background-color: var(--bg-dark);
    border: 1px solid rgba(197, 160, 101, 0.2);
    padding: 40px 25px;
    transition: transform 0.3s ease;
}
.review-card:hover { transform: translateY(-5px); border-color: var(--accent-gold); }

.quote-icon { font-size: 30px; color: var(--accent-gold); opacity: 0.3; margin-bottom: 15px; }
.stars { color: var(--accent-gold); letter-spacing: 3px; margin-bottom: 15px; }
.review-text { font-style: italic; color: #d1d1d1; font-size: 15px; margin-bottom: 20px; }
.reviewer-name { color: var(--accent-gold); font-weight: 600; font-size: 12px; letter-spacing: 1px; }

/* FOOTER */
footer {
    padding: 60px 50px 20px;
    background-color: #041a15;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-logo-large img { height: 100px; margin-bottom: 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; margin-bottom: 40px; text-align: center; }
.footer-col h4 { font-size: 13px; margin-bottom: 20px; letter-spacing: 1.5px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: #888; text-decoration: none; font-size: 13px; transition: 0.3s; }
.footer-col a:hover { color: var(--accent-gold); }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 20px; font-size: 11px; color: #555; }

/* =========================================
   8. SUB-PAGE STYLES (About & Contact)
   ========================================= */
.page-header-section {
    padding: 150px 50px 50px;
    text-align: center;
    background: linear-gradient(to bottom, #051f1a, var(--bg-dark));
}

.page-title-large {
    font-size: 56px;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* About Page */
.about-grid {
    display: flex;
    align-items: center;
    gap: 80px; /* Increased gap for better layout */
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-grid.reverse { flex-direction: row-reverse; }

.about-text h2 { 
    font-size: 36px; 
    margin-bottom: 25px; 
    color: white; 
    letter-spacing: 2px;
}

.about-text p { 
    color: var(--text-grey); 
    margin-bottom: 25px; 
    font-size: 18px; /* Slightly larger text for readability */
    line-height: 1.8;
}

/* FIXED IMAGE STYLE: Full Visibility & Frame */
.about-arch-img {
    width: 100%;
    min-width: 400px; /* Ensures it doesn't get too small */
    height: 450px; /* Balanced rectangular height */
    
    /* This ensures the image isn't distorted but covers the area */
    object-fit: cover; 
    
    /* The "Frame" Look */
    border-radius: 20px; /* Soft rounded corners (Removed the Arch) */
    border: 1px solid rgba(197, 160, 101, 0.5); /* Distinct Gold Border */
    padding: 20px; /* The "Breathing Room" between image and border */
    
    /* Depth */
    box-shadow: 0 20px 50px rgba(0,0,0,0.4); 
    background-color: rgba(255,255,255,0.02); /* Subtle glass effect background */
}

/* Mobile Responsive Fix for About Page */
@media (max-width: 900px) {
    .about-grid, .about-grid.reverse { 
        flex-direction: column; 
        gap: 40px;
    }
    
    .about-arch-img { 
        min-width: auto; 
        width: 100%; 
        height: 300px; 
    }
}
/* =========================================
   9. CONTACT PAGE (Green & Gold Theme)
   ========================================= */

/* =========================================
   9. CONTACT PAGE (Updated Header)
   ========================================= */

/* Hero Section - Solid Green (No Image) */
.contact-hero {
    height: 300px; /* Compact & Clean */
    background-color: var(--bg-dark); /* Deep Rainforest Green */
    display: flex;
    flex-direction: column; /* Stack text vertically */
    align-items: center;
    justify-content: center;
    margin-top: 100px; /* Offset for fixed header */
    padding: 0 20px;
}

/* Remove the dark overlay since we have a solid background now */
.contact-hero::before { display: none; }

/* The Cursive Subtitle (Matches "Our Heritage") */
.hero-subtitle {
    font-family: var(--font-script); /* Dancing Script */
    color: #b0b0b0; /* Light Grey/White */
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

/* The Main Gold Title (Matches "THE CHAIWALA STORY") */
.hero-title {
    font-family: var(--font-heading); /* Jost */
    color: var(--accent-gold); /* Gold */
    font-size: 56px;
    font-weight: 700; /* Bold */
    text-transform: uppercase;
    letter-spacing: 4px;
    text-align: center;
    line-height: 1.1;
}

/* Mobile Adjustment */
@media (max-width: 900px) {
    .contact-hero { height: 250px; }
    .hero-subtitle { font-size: 24px; }
    .hero-title { font-size: 36px; }
}
.contact-hero::before { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.5); }
.contact-hero h1 { 
    position: relative; 
    z-index: 2; 
    color: var(--accent-gold); /* Gold Heading */
    font-family: var(--font-heading);
    font-size: 42px; 
    font-weight: 700; /* Bolder like screenshot */
    text-align: center; 
    letter-spacing: 3px; 
    text-transform: uppercase;
}

/* --- SECTION 1: CONTACT INFO (Green) --- */
.contact-info-section {
    background-color: var(--bg-dark); /* Deep Green */
    padding: 80px 0;
    color: white;
    border-bottom: 1px solid rgba(197, 160, 101, 0.2); /* Faint Gold Divider */
}

.info-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Column: Text Info */
.info-text-side { flex: 1; }

.info-text-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--accent-gold); /* Gold */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.info-block { margin-bottom: 30px; }

.info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 1.5px;
    color: white; /* White Labels */
}

.info-text { font-size: 16px; line-height: 1.6; color: var(--text-grey); }

/* Right Column: Map Image */
.map-side { flex: 1; display: flex; justify-content: flex-end; }

.map-img {
    width: 100%;
    max-width: 500px;
    height: 350px;
    object-fit: cover;
    border: 1px solid var(--accent-gold); /* Gold Border */
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); /* Deep Shadow */
    border-radius: 10px;
}

/* --- SECTION 2: GET IN TOUCH (Now Green & Gold) --- */
.contact-form-section {
    background-color: var(--bg-dark); /* Changed to Deep Green */
    padding: 80px 0;
    color: white;
}

.form-container {
    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 40px;
}

.contact-form-section h2 {
    font-size: 36px;
    color: var(--accent-gold); /* Gold Heading */
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700; /* Bold font from screenshot */
}

.form-intro {
    color: var(--text-grey);
    margin-bottom: 50px;
    font-size: 16px;
    line-height: 1.6;
}

/* Premium Dark Inputs (Gold Underline Style) */
.dark-mode-input {
    width: 100%;
    background-color: transparent; /* No Beige Box */
    border: none;
    border-bottom: 1px solid #555; /* Subtle grey line */
    padding: 20px 0;
    margin-bottom: 10px;
    font-family: var(--font-body);
    font-size: 16px;
    color: white;
    transition: 0.3s;
}

.dark-mode-input::placeholder {
    color: #777;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.dark-mode-input:focus {
    outline: none;
    border-bottom: 1px solid var(--accent-gold); /* Glows Gold on click */
}

/* Form Buttons */
.form-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.btn-form {
    padding: 15px 40px;
    border-radius: 50px; /* Pill shape */
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-reset { 
    background-color: transparent; 
    border: 1px solid rgba(255,255,255,0.3); 
    color: white; 
}
.btn-reset:hover { background-color: rgba(255,255,255,0.1); }

.btn-submit { 
    background-color: var(--accent-gold); 
    color: white; 
}
.btn-submit:hover { 
    background-color: #b08d5e; 
    transform: translateY(-2px);
}

/* Mobile Stack */
@media (max-width: 900px) {
    .info-container { flex-direction: column; }
    .map-side { width: 100%; justify-content: flex-start; }
    .map-img { height: 250px; width: 100%; }
    .contact-form-section { padding: 60px 0; }
}
/* =========================================
   MOBILE RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
    header { height: 70px; padding: 10px 20px; }
    .header-logo-img { height: 80px; margin-top: 5px; } 
    .nav-left { display: none; }
    
    .journey-section { flex-direction: column; height: auto; }
    .journey-image-container { height: 400px; width: 100%; }
    .journey-text { padding: 40px 20px; }
    .badge-circle { display: none; }
    
    .chai-menu-section, .loyalty-section { flex-direction: column; height: auto; padding-top: 40px; }
    .chai-menu-img, .loyalty-img { width: 90%; height: 350px; margin: 20px auto; flex: none; }
    .chai-menu-content, .loyalty-content { padding: 40px 25px; min-width: auto; text-align: center; align-items: center; }
    
    .menu-category-title { font-size: 40px; margin-bottom: 40px; }
    .loyalty-content h2 { font-size: 36px; }
    
    .arch-img { height: 300px; }
    .about-grid, .about-grid.reverse { flex-direction: column; }
    .contact-section { flex-direction: column; }
    .about-arch-img { height: 350px; }
}
/* =========================================
   FOOTER UPDATES (Centered Logo & Socials)
   ========================================= */

/* Ensure Logo is perfectly centered */
.footer-logo-large {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px; /* Space between logo and icons */
}

/* Social Icons Container */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px; /* Space between icons */
    margin-bottom: 50px; /* Space below icons before the links */
}

/* Individual Icons */
.social-icons a {
    color: var(--accent-gold);
    font-size: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    
    /* Circle Border around icons (Optional, looks premium) */
    width: 50px;
    height: 50px;
    border: 1px solid rgba(197, 160, 101, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hover Effect */
.social-icons a:hover {
    background-color: var(--accent-gold);
    color: var(--bg-dark); /* Icon turns dark green */
    transform: translateY(-5px);
    border-color: var(--accent-gold);
}
/* =========================================
   8. MOBILE HAMBURGER MENU STYLES
   ========================================= */

/* Hide Hamburger on Desktop */
.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    z-index: 1002; /* Above everything */
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--accent-gold);
    transition: 0.3s;
}

/* Mobile Menu Container (Hidden by default) */
.mobile-menu {
    position: fixed;
    top: -100%; /* Hidden above screen */
    left: 0;
    width: 100%;
    background-color: rgba(7, 40, 33, 0.98); /* Deep Green */
    padding: 100px 0 40px;
    transition: 0.4s ease;
    z-index: 999; /* Below header, above content */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    top: 0; /* Slide down */
}

.mobile-link {
    color: var(--text-white);
    font-family: var(--font-heading);
    font-size: 20px;
    text-decoration: none;
    letter-spacing: 2px;
}

.mobile-link:hover {
    color: var(--accent-gold);
}

/* Hamburger Animation when active */
.hamburger.active .bar:nth-child(2) { opacity: 0; }
.hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* SHOW ON MOBILE */
@media (max-width: 900px) {
    .hamburger { display: flex; }
    
    /* Adjust header layout for mobile */
    header { padding: 15px 30px; justify-content: space-between; }
    
    /* Hide the desktop Order button on mobile if it crowds the logo */
    .btn-order { display: none; } 
    
    /* Show a smaller Order button inside the mobile menu instead? 
       Or keep header clean. Let's add an order button inside the mobile menu. */
}
/* =========================================
   10. ORDER & CHECKOUT PAGES
   ========================================= */

/* Order Page Layout */
.order-section {
    padding: 150px 50px 80px;
    background-color: var(--bg-dark);
}

.menu-cat-title {
    color: var(--accent-gold);
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    letter-spacing: 3px;
    font-family: var(--font-heading);
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu Card */
.order-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(197, 160, 101, 0.3);
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}
.order-card:hover { border-color: var(--accent-gold); transform: translateY(-5px); }

.order-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.order-info {
    padding: 20px;
    text-align: center;
}

.order-info h3 {
    color: white;
    font-size: 20px;
    margin-bottom: 10px;
}

.order-info .price {
    color: var(--accent-gold);
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-add {
    background-color: transparent;
    border: 1px solid white;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}
.btn-add:hover { background-color: var(--accent-gold); border-color: var(--accent-gold); }

/* Checkout Page */
.checkout-section {
    padding: 150px 50px;
    background-color: var(--bg-dark);
    min-height: 100vh;
}

.checkout-container {
    max-width: 1000px;
    margin: 50px auto;
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.order-summary, .checkout-form {
    flex: 1;
    min-width: 350px;
    background: rgba(0,0,0,0.2);
    padding: 30px;
    border-radius: 10px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
    margin-bottom: 20px;
}

.cart-table th { text-align: left; border-bottom: 1px solid #555; padding: 10px 0; color: var(--accent-gold); }
.cart-table td { padding: 15px 0; border-bottom: 1px solid #333; }

.btn-remove {
    background: none; border: none; color: #ff6b6b; font-size: 20px; cursor: pointer;
}

.cart-total-box {
    text-align: right;
    font-size: 24px;
    color: white;
    font-weight: bold;
    margin-top: 20px;
}

/* Toast Notification */
.toast-msg {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: var(--accent-gold);
    color: white;
    padding: 15px 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s, fadeOut 0.5s 2.5s;
    z-index: 2000;
}

@keyframes fadeIn { from {opacity: 0; transform: translateY(20px);} to {opacity: 1; transform: translateY(0);} }
@keyframes fadeOut { from {opacity: 1;} to {opacity: 0;} }
/* =========================================
   11. CHECKOUT PAGE STYLES
   ========================================= */
.checkout-section {
    min-height: 100vh;
    background-color: var(--bg-dark);
    padding-bottom: 100px;
}

.checkout-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    padding: 0 40px;
}

/* Left Side: Table */
.order-summary {
    flex: 1.5;
    background-color: rgba(255,255,255,0.02);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(197, 160, 101, 0.2);
}

.order-summary h2, .checkout-form-wrapper h2 {
    color: white;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    color: white;
}

.cart-table th {
    text-align: left;
    color: var(--accent-gold);
    font-size: 12px;
    letter-spacing: 1px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.cart-table td {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 15px;
}

.cart-total-box {
    text-align: right;
    margin-top: 30px;
    color: white;
    font-family: var(--font-heading);
    letter-spacing: 2px;
}

/* Remove Button (X) */
.btn-remove {
    background: none;
    border: none;
    color: #ff6b6b;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
}
.btn-remove:hover { color: red; transform: scale(1.2); }

/* Right Side: Form */
.checkout-form-wrapper {
    flex: 1;
    background-color: rgba(255,255,255,0.05); /* Slightly lighter block */
    padding: 40px;
    border-radius: 10px;
    height: fit-content;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .checkout-container { flex-direction: column; }
    .cart-table th, .cart-table td { font-size: 13px; }
}
/* =========================================
   FLOATING CART BAR STYLES (Fix)
   ========================================= */

.floating-cart-bar {
    position: fixed;
    bottom: 30px;
    left: 50%;
    /* Centers the bar horizontally */
    transform: translateX(-50%) translateY(100px); /* Start hidden below screen */
    
    width: 90%;
    max-width: 450px;
    
    /* Design */
    background-color: var(--accent-gold); 
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    
    /* Layout */
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    /* Shadow & Layering */
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 9999; /* Ensures it floats above everything */
    text-decoration: none;
    font-family: var(--font-heading);
    
    /* Smooth Animation */
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0; /* Invisible by default */
    pointer-events: none; /* Can't click when hidden */
}

/* This class is added by JavaScript when you add an item */
.floating-cart-bar.active {
    transform: translateX(-50%) translateY(0); /* Slide up into view */
    opacity: 1;
    pointer-events: all;
}

/* The small white number badge */
.cart-count-badge {
    background-color: white;
    color: var(--bg-dark);
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 12px;
    margin-right: 12px;
    font-size: 14px;
}

/* "VIEW CART" Text */
.cart-text {
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 14px;
    text-transform: uppercase;
}

/* Total Price on the right */
.cart-total-preview {
    font-weight: 700;
    font-size: 18px;
}