/*
Theme Name: Royal Creation Exports
Author: Amit Gupta
Description: Master Luxury Editorial Theme - Unified Mobile & Desktop.
Version: 2.0
*/

/* --- 1. GLOBAL SETTINGS --- */
:root {
    --bg-white: #ffffff;
    --text-dark: #1A1A1A;
    --muted-gold: #C5A059;
    --deep-black: #000000;
}

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

body {
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
}

.container { 
    max-width: 1100px; 
    margin: 0 auto; 
    padding: 0 25px; 
}

/* --- 2. TYPOGRAPHY (The "Export Collection" Look) --- */
h1, h2, h3, h4, h5, h6, 
.site-header h1, 
.site-footer h4 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    letter-spacing: 2px;
}

h2 { font-size: 3.5rem; line-height: 1.1; margin-bottom: 40px; }
h4 { font-size: 0.8rem; letter-spacing: 4px; color: var(--muted-gold); }

/* --- 3. HEADER (Black Bar) --- */
header, .site-header {
    background-color: #000000 !important;
    padding: 25px 0;
    width: 100%;
}

.logo h1 { color: #ffffff !important; font-size: 1.4rem !important; letter-spacing: 5px !important; }
.logo p { color: var(--muted-gold) !important; font-size: 0.6rem !important; letter-spacing: 3px !important; font-family: 'Montserrat', sans-serif; }

.main-nav a {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff !important;
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-decoration: none !important;
    text-transform: uppercase;
}

.main-nav a:hover, .quality-link a {
    color: var(--muted-gold) !important;
}

/* --- 4. FOOTER (Black Bar & 3-Columns) --- */
footer, .site-footer {
    background-color: #000000 !important;
    color: #ffffff !important;
    padding: 80px 0 40px !important;
    margin-top: 100px;
}

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

footer a, .site-footer a {
    color: rgba(255,255,255,0.7) !important;
    text-
    /* --- THE ULTIMATE MOBILE OVERDRIVE --- */

@media only screen and (max-width: 1024px) {
    /* Force Header to stack */
    header .container, .site-header .container {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px !important;
    }

    .main-nav ul {
        justify-content: center !important;
        margin-top: 15px !important;
        gap: 15px !important;
    }

    /* Force Footer to 1 Column */
    .footer-grid, 
    footer .container > div, 
    .site-footer .container > div {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
    }

    .footer-col, footer div {
        margin-bottom: 50px !important;
        width: 100% !important;
    }

    /* Fix the WhatsApp Pill on Mobile */
    .whatsapp-float {
        bottom: 15px !important;
        right: 15px !important;
        padding: 8px 18px !important;
        font-size: 10px !important;
        width: auto !important;
    }

    /* Prevent any horizontal scrolling */
    html, body {
        overflow-x: hidden !important;
        position: relative;
    }
}