:root {
    --color-maroon: #5c1a2e;
    --color-maroon-dark: #3d0f1f;
    --color-maroon-light: #7a2840;
    --color-gold: #c9a227;
    --color-gold-light: #e8d48b;
    --color-beige: #f8f4ef;
    --color-beige-dark: #ebe4d8;
    --color-white: #ffffff;
    --color-text: #2c2420;
    --color-text-muted: #6b5f57;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', system-ui, sans-serif;
    --shadow-sm: 0 2px 8px rgba(92, 26, 46, 0.06);
    --shadow-md: 0 8px 24px rgba(92, 26, 46, 0.1);
    --shadow-lg: 0 16px 48px rgba(92, 26, 46, 0.14);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-beige);
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-maroon-dark);
}

a { color: var(--color-maroon); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-gold); }

.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.03em;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-transform: uppercase;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, #a8861f 100%);
    color: var(--color-maroon-dark);
    box-shadow: var(--shadow-sm);
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-maroon-dark);
}

.btn-maroon {
    background: linear-gradient(135deg, var(--color-maroon) 0%, var(--color-maroon-dark) 100%);
    color: var(--color-white);
}
.btn-maroon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--color-white);
}

.btn-outline-gold {
    background: transparent;
    border: 2px solid var(--color-gold);
    color: var(--color-maroon);
}
.btn-outline-gold:hover {
    background: var(--color-gold);
    color: var(--color-maroon-dark);
}

.section-padding { padding: 4rem 0; }
.section-title {
    font-size: 2.25rem;
    text-align: center;
    margin-bottom: 0.5rem;
}
.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.glass-nav {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
}

.card-premium {
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid rgba(201, 162, 39, 0.12);
}
.card-premium:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(201, 162, 39, 0.35);
}

.section-premium {
    position: relative;
}
.section-premium::after {
    content: '';
    display: block;
    width: 64px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-maroon));
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

.badge-discount {
    background: var(--color-maroon);
    color: var(--color-white);
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
}

.badge-offer {
    background: var(--color-gold);
    color: var(--color-maroon-dark);
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
}

.page-fade-in {
    animation: fadeIn 0.5s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(248, 244, 239, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.loading-overlay.active { display: flex; }

.spinner {
    width: 48px;
    height: 48px;
    border: 3px solid var(--color-beige-dark);
    border-top-color: var(--color-gold);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.toast-container {
    position: fixed;
    top: 5rem;
    right: 1rem;
    z-index: 9998;
}
.toast-msg {
    background: var(--color-maroon);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    margin-bottom: 0.5rem;
    animation: slideIn 0.3s ease;
    box-shadow: var(--shadow-md);
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

.main-content { flex: 1; }
