/* ==========================================================================
   Global CSS & Theme Customization Variables (Luxury Women's Couture)
   ========================================================================== */
:root {
    --primary-color: #881337;          /* Royal Deep Wine / Maroon */
    --primary-hover: #9f1239;          /* Rich Velvet Wine Hover */
    --accent-gold: #c59b27;            /* Antique Heritage Gold */
    --accent-gold-light: #fef3c7;      /* Subtle Gold Cream */
    --text-color: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #fdfbf7;              /* Warm Ivory Background */
    --border-color: #f1e6e9;          /* Subtle Rosy Border */
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Georgia", serif;
    --container-max-width: 1240px;
}

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

body {
    font-family: var(--font-stack);
    color: var(--text-color);
    background-color: #ffffff;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.site-container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 16px;
}

a {
    color: inherit;
    text-decoration: none;
}