/* ===== LUXURY WATCHES LANDING PAGE - BAROQUE STYLE ===== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    /* Baroque Color Palette */
    --essence-gold: #D4AF37;
    --zenith-dark-gold: #B8860B;
    --paradox-burgundy: #800020;
    --serenity-deep-red: #8B0000;
    --chaos-cream: #FDF5E6;
    --essence-ivory: #FFFFF0;
    --zenith-charcoal: #2C2C2C;
    --paradox-silver: #C0C0C0;
    --serenity-bronze: #CD7F32;
    --chaos-black: #0D0D0D;
    
    /* Typography */
    --essence-serif: 'Playfair Display', serif;
    --zenith-sans: 'Inter', sans-serif;
    
    /* Spacing */
    --paradox-space-xs: 0.5rem;
    --serenity-space-sm: 1rem;
    --chaos-space-md: 1.5rem;
    --essence-space-lg: 2rem;
    --zenith-space-xl: 3rem;
    --paradox-space-xxl: 4rem;
    
    /* Shadows */
    --essence-shadow-light: 0 2px 10px rgba(212, 175, 55, 0.1);
    --zenith-shadow-medium: 0 5px 20px rgba(212, 175, 55, 0.2);
    --paradox-shadow-heavy: 0 10px 40px rgba(212, 175, 55, 0.3);
    --serenity-text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    
    /* Gradients */
    --chaos-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --essence-burgundy-gradient: linear-gradient(135deg, #800020 0%, #8B0000 100%);
    --zenith-cream-gradient: linear-gradient(135deg, #FDF5E6 0%, #FFFFF0 100%);
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--zenith-sans);
    line-height: 1.6;
    color: var(--zenith-charcoal);
    background: var(--chaos-cream);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(128, 0, 32, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--essence-serif);
    font-weight: 700;
    line-height: 1.2;
    color: var(--paradox-burgundy);
    text-shadow: var(--serenity-text-shadow);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--chaos-space-md);
    color: white;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--serenity-space-sm);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: var(--serenity-space-sm);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    margin-bottom: var(--paradox-space-xs);
}

p {
    margin-bottom: var(--serenity-space-sm);
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.7;
}

/* ===== CONTAINERS ===== */
.serenity-container,
.chaos-container,
.essence-container,
.zenith-container,
.paradox-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--serenity-space-sm);
}

/* ===== BUTTONS ===== */
.paradox-btn-primary,
.essence-btn-primary,
.essence-submit-btn {
    background: var(--chaos-gold-gradient);
    color: var(--chaos-black);
    padding: var(--chaos-space-md) var(--essence-space-lg);
    border: 2px solid var(--essence-gold);
    border-radius: 8px;
    font-family: var(--essence-serif);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--paradox-space-xs);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--zenith-shadow-medium);
    position: relative;
    overflow: hidden;
}

.paradox-btn-primary::before,
.essence-btn-primary::before,
.essence-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.paradox-btn-primary:hover::before,
.essence-btn-primary:hover::before,
.essence-submit-btn:hover::before {
    left: 100%;
}

.paradox-btn-primary:hover,
.essence-btn-primary:hover,
.essence-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--paradox-shadow-heavy);
    border-color: var(--zenith-dark-gold);
}

.serenity-btn-secondary,
.zenith-btn-secondary {
    background: transparent;
    color: var(--essence-gold);
    padding: var(--chaos-space-md) var(--essence-space-lg);
    border: 2px solid var(--essence-gold);
    border-radius: 8px;
    font-family: var(--essence-serif);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--paradox-space-xs);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--essence-shadow-light);
}

.serenity-btn-secondary:hover,
.zenith-btn-secondary:hover {
    background: var(--chaos-gold-gradient);
    color: var(--chaos-black);
    transform: translateY(-2px);
    box-shadow: var(--zenith-shadow-medium);
}

/* ===== COOKIE NOTIFICATION ===== */
.essence-notification {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--essence-burgundy-gradient);
    color: var(--essence-ivory);
    padding: var(--serenity-space-sm);
    box-shadow: var(--paradox-shadow-heavy);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 3px solid var(--essence-gold);
}

.essence-notification.show {
    transform: translateY(0);
}

.paradox-content {
    display: flex;
    align-items: center;
    gap: var(--serenity-space-sm);
    flex-wrap: wrap;
    justify-content: space-between;
}

.paradox-content i {
    font-size: 2rem;
    color: var(--essence-gold);
    flex-shrink: 0;
}

.serenity-text {
    flex: 1;
    min-width: 300px;
}

.serenity-text h3 {
    color: var(--essence-gold);
    margin-bottom: var(--paradox-space-xs);
    font-size: 1.2rem;
}

.serenity-text p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.chaos-actions {
    display: flex;
    gap: var(--serenity-space-sm);
    flex-shrink: 0;
}

.chaos-actions button {
    padding: var(--paradox-space-xs) var(--serenity-space-sm);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* ===== NAVIGATION ===== */
.paradox-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(253, 245, 230, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--essence-gold);
    z-index: 9999;
    padding: var(--serenity-space-sm) 0;
    box-shadow: var(--zenith-shadow-medium);
}

.chaos-nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.essence-logo {
    display: flex;
    align-items: center;
    gap: var(--paradox-space-xs);
    font-family: var(--essence-serif);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--paradox-burgundy);
    text-decoration: none;
}

.essence-logo i {
    font-size: 2rem;
    color: var(--essence-gold);
}

.zenith-nav-links {
    display: flex;
    align-items: center;
    gap: var(--essence-space-lg);
}

.zenith-nav-links a {
    font-family: var(--zenith-sans);
    font-weight: 500;
    color: var(--paradox-burgundy);
    text-decoration: none;
    padding: var(--paradox-space-xs) var(--serenity-space-sm);
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.zenith-nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--essence-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.zenith-nav-links a:hover::after {
    width: 100%;
}

.zenith-nav-links a:hover {
    color: var(--essence-gold);
}

.paradox-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--paradox-space-xs);
}

.paradox-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--essence-gold);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== MOBILE MENU ===== */
.serenity-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--essence-burgundy-gradient);
    z-index: 10001;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.serenity-mobile-menu.active {
    transform: translateX(0);
}

.chaos-mobile-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: var(--essence-space-lg);
}

.essence-close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--essence-gold);
    font-size: 2rem;
    cursor: pointer;
    margin-bottom: var(--essence-space-lg);
}

.zenith-mobile-links {
    display: flex;
    flex-direction: column;
    gap: var(--essence-space-lg);
    flex: 1;
    justify-content: center;
}

.zenith-mobile-links a {
    font-family: var(--essence-serif);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--essence-ivory);
    text-decoration: none;
    padding: var(--serenity-space-sm);
    text-align: center;
    border: 2px solid transparent;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.zenith-mobile-links a:hover {
    border-color: var(--essence-gold);
    color: var(--essence-gold);
}

/* ===== HERO SECTION ===== */
.paradox-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 50px;
    overflow: hidden;
}

.serenity-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.chaos-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.essence-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(128, 0, 32, 0.8) 0%,
        rgba(212, 175, 55, 0.6) 50%,
        rgba(13, 13, 13, 0.9) 100%
    );
}

.paradox-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--essence-ivory);
    max-width: 800px;
    margin: 0 auto;
    padding: var(--paradox-space-xxl) var(--serenity-space-sm);
}

.serenity-hero-title {
    color: var(--essence-ivory);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
    margin-bottom: var(--chaos-space-md);
    font-weight: 900;
    letter-spacing: 2px;
}

.chaos-subtitle {
    display: block;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--essence-gold);
    font-weight: 600;
    margin-top: var(--serenity-space-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.essence-hero-description {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--essence-space-lg);
    line-height: 1.8;
    color: var(--chaos-cream);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.zenith-hero-actions {
    display: flex;
    gap: var(--serenity-space-sm);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--essence-space-lg);
}

/* ===== SECTION LAYOUTS ===== */
.essence-collection,
.chaos-expertise,
.zenith-authenticity,
.essence-testimonials,
.paradox-contact {
    padding: var(--paradox-space-xxl) 0;
    position: relative;
}

.essence-collection {
    background: var(--zenith-cream-gradient);
}

.chaos-expertise {
    background: linear-gradient(135deg, #FFFFF0 0%, #FDF5E6 100%);
    position: relative;
}

.chaos-expertise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(212, 175, 55, 0.05) 50px,
            rgba(212, 175, 55, 0.05) 100px
        );
    pointer-events: none;
}

.zenith-authenticity {
    background: var(--chaos-cream);
    border-top: 3px solid var(--essence-gold);
    border-bottom: 3px solid var(--essence-gold);
}

.essence-testimonials {
    background: var(--essence-burgundy-gradient);
    color: var(--essence-ivory);
}

.paradox-contact {
    background: var(--zenith-cream-gradient);
}

/* ===== SECTION HEADERS ===== */
.paradox-section-header,
.serenity-authenticity-header,
.zenith-testimonials-header,
.chaos-contact-header {
    text-align: center;
    margin-bottom: var(--zenith-space-xl);
}

.serenity-section-title,
.chaos-section-title,
.essence-section-title,
.paradox-section-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--serenity-space-sm);
    margin-bottom: var(--serenity-space-sm);
}

.paradox-section-title  {
    color: white;
}

.serenity-section-title i,
.chaos-section-title i,
.essence-section-title i,
.paradox-section-title i {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--essence-gold);
}

.chaos-section-subtitle,
.essence-section-subtitle,
.zenith-section-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--zenith-charcoal);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.essence-testimonials .serenity-section-subtitle {
    color: var(--chaos-cream);
}

/* ===== COLLECTION GRID ===== */
.essence-collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--essence-space-lg);
    margin-bottom: var(--zenith-space-xl);
}

.zenith-collection-item {
    background: var(--essence-ivory);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--paradox-shadow-heavy);
    transition: all 0.3s ease;
    border: 2px solid var(--essence-gold);
}

.zenith-collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.paradox-image-container {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.serenity-collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.zenith-collection-item:hover .serenity-collection-image {
    transform: scale(1.1);
}

.chaos-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--essence-burgundy-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zenith-collection-item:hover .chaos-overlay {
    opacity: 0.95;
}

.essence-overlay-content {
    text-align: center;
    color: var(--essence-ivory);
    padding: var(--serenity-space-sm);
}

.essence-overlay-content h3 {
    color: var(--essence-gold);
    margin-bottom: var(--paradox-space-xs);
    font-size: 1.5rem;
}

.essence-overlay-content p {
    margin-bottom: var(--serenity-space-sm);
    font-size: 1.1rem;
}

.essence-overlay-content i {
    font-size: 2rem;
    color: var(--essence-gold);
}

/* ===== COLLECTION DESCRIPTION ===== */
.paradox-collection-description {
    background: var(--essence-ivory);
    padding: var(--essence-space-lg);
    border-radius: 15px;
    box-shadow: var(--zenith-shadow-medium);
    border: 2px solid var(--essence-gold);
}

.serenity-description-block h3 {
    color: var(--paradox-burgundy);
    margin-bottom: var(--serenity-space-sm);
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
}

.serenity-description-block p {
    text-align: justify;
    margin-bottom: var(--serenity-space-sm);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== EXPERTISE SECTION ===== */
.zenith-expertise-content {
    position: relative;
    z-index: 2;
}

.paradox-expertise-text {
    max-width: 1000px;
    margin: 0 auto;
}

.chaos-expertise-block,
.essence-expertise-block {
    background: var(--essence-ivory);
    padding: var(--essence-space-lg);
    margin-bottom: var(--essence-space-lg);
    border-radius: 15px;
    box-shadow: var(--zenith-shadow-medium);
    border-left: 5px solid var(--essence-gold);
}

.chaos-expertise-block h3,
.essence-expertise-block h3 {
    color: var(--paradox-burgundy);
    margin-bottom: var(--serenity-space-sm);
    display: flex;
    align-items: center;
    gap: var(--paradox-space-xs);
}

.chaos-expertise-block h3::before,
.essence-expertise-block h3::before {
    content: '◆';
    color: var(--essence-gold);
    font-size: 1.2rem;
}

/* ===== AUTHENTICITY SECTION ===== */
.zenith-authenticity-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--essence-space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.paradox-authenticity-block,
.serenity-authenticity-block {
    background: var(--essence-ivory);
    padding: var(--essence-space-lg);
    border-radius: 15px;
    box-shadow: var(--zenith-shadow-medium);
    border: 2px solid var(--essence-gold);
    position: relative;
}

.paradox-authenticity-block::before,
.serenity-authenticity-block::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--chaos-gold-gradient);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.3;
}

.paradox-authenticity-block h3,
.serenity-authenticity-block h3 {
    color: var(--paradox-burgundy);
    margin-bottom: var(--serenity-space-sm);
    text-align: center;
    font-size: 1.8rem;
}

.paradox-authenticity-block p,
.serenity-authenticity-block p {
    text-align: justify;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ===== TESTIMONIALS SECTION ===== */
.essence-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--essence-space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.zenith-testimonial-card {
    background: var(--essence-ivory);
    border-radius: 15px;
    padding: var(--essence-space-lg);
    box-shadow: var(--paradox-shadow-heavy);
    border: 2px solid var(--essence-gold);
    transition: all 0.3s ease;
}

.zenith-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(212, 175, 55, 0.4);
}

.paradox-testimonial-image {
    text-align: center;
    margin-bottom: var(--serenity-space-sm);
}

.serenity-testimonial-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--essence-gold);
    box-shadow: var(--zenith-shadow-medium);
}

.chaos-testimonial-content {
    text-align: center;
}

.essence-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: var(--serenity-space-sm);
}

.essence-stars i {
    color: var(--essence-gold);
    font-size: 1.2rem;
}

.chaos-testimonial-content blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: var(--serenity-space-sm);
    color: var(--zenith-charcoal);
    position: relative;
    padding: 0 var(--serenity-space-sm);
}

.chaos-testimonial-content blockquote::before,
.chaos-testimonial-content blockquote::after {
    content: '"';
    font-size: 2rem;
    color: var(--essence-gold);
    font-family: var(--essence-serif);
}

.chaos-testimonial-content cite {
    font-weight: 600;
    color: var(--paradox-burgundy);
    font-size: 0.9rem;
}

/* ===== CONTACT SECTION ===== */
.paradox-contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--zenith-space-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.serenity-contact-info {
    background: var(--essence-ivory);
    padding: var(--essence-space-lg);
    border-radius: 15px;
    box-shadow: var(--zenith-shadow-medium);
    border: 2px solid var(--essence-gold);
}

.serenity-contact-info h3 {
    color: var(--paradox-burgundy);
    margin-bottom: var(--serenity-space-sm);
    text-align: center;
    font-size: 1.8rem;
}

.chaos-contact-block,
.essence-contact-block {
    margin-bottom: var(--essence-space-lg);
}

.chaos-contact-block h4,
.essence-contact-block h4 {
    color: var(--essence-gold);
    margin-bottom: var(--serenity-space-sm);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    gap: var(--paradox-space-xs);
}

.chaos-contact-block h4::before,
.essence-contact-block h4::before {
    content: '★';
    color: var(--essence-gold);
}

/* ===== CONTACT FORM ===== */
.zenith-contact-form {
    background: var(--essence-ivory);
    padding: var(--essence-space-lg);
    border-radius: 15px;
    box-shadow: var(--zenith-shadow-medium);
    border: 2px solid var(--essence-gold);
}

.chaos-order-form h3 {
    color: var(--paradox-burgundy);
    margin-bottom: var(--essence-space-lg);
    text-align: center;
    font-size: 1.8rem;
}

.essence-form-group,
.serenity-form-group,
.chaos-form-group,
.paradox-form-group {
    margin-bottom: var(--serenity-space-sm);
}

.essence-form-group label,
.serenity-form-group label,
.chaos-form-group label,
.paradox-form-group label {
    display: block;
    color: var(--paradox-burgundy);
    font-weight: 600;
    margin-bottom: var(--paradox-space-xs);
    font-size: 1.1rem;
}

.paradox-input,
.zenith-select,
.chaos-textarea {
    width: 100%;
    padding: var(--chaos-space-md);
    border: 2px solid var(--paradox-silver);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--zenith-sans);
    background: var(--chaos-cream);
    transition: all 0.3s ease;
}

.paradox-input:focus,
.zenith-select:focus,
.chaos-textarea:focus {
    outline: none;
    border-color: var(--essence-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    background: var(--essence-ivory);
}

.chaos-textarea {
    resize: vertical;
    min-height: 120px;
}

.essence-submit-btn {
    width: 100%;
    margin-top: var(--serenity-space-sm);
    font-size: 1.2rem;
    padding: var(--serenity-space-sm) var(--essence-space-lg);
}

/* ===== FOOTER ===== */
.zenith-footer {
    background: var(--essence-burgundy-gradient);
    color: var(--essence-ivory);
    padding: var(--zenith-space-xl) 0 var(--serenity-space-sm);
    border-top: 3px solid var(--essence-gold);
}

.serenity-footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--essence-space-lg);
    margin-bottom: var(--essence-space-lg);
}

.chaos-footer-section,
.paradox-footer-section {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--serenity-space-sm);
    border-radius: 10px;
    border: 1px solid var(--essence-gold);
}

.essence-footer-logo {
    text-align: center;
    margin-bottom: var(--serenity-space-sm);
}

.essence-footer-logo i {
    font-size: 2.5rem;
    color: var(--essence-gold);
    margin-bottom: var(--paradox-space-xs);
}

.essence-footer-logo h3 {
    color: var(--essence-gold);
    margin-bottom: var(--paradox-space-xs);
    font-size: 1.5rem;
}

.essence-footer-logo p {
    color: var(--chaos-cream);
    font-size: 0.9rem;
    margin: 0;
}

.zenith-footer-description {
    text-align: center;
    color: var(--chaos-cream);
    line-height: 1.6;
    font-size: 0.95rem;
}

.chaos-footer-section h4,
.paradox-footer-section h4 {
    color: var(--essence-gold);
    margin-bottom: var(--serenity-space-sm);
    font-size: 1.2rem;
    text-align: center;
    border-bottom: 2px solid var(--essence-gold);
    padding-bottom: var(--paradox-space-xs);
}

.essence-contact-info p {
    display: flex;
    align-items: center;
    gap: var(--paradox-space-xs);
    margin-bottom: var(--paradox-space-xs);
    font-size: 0.9rem;
    color: var(--chaos-cream);
}

.essence-contact-info i {
    color: var(--essence-gold);
    width: 20px;
    text-align: center;
}

.serenity-footer-links,
.essence-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.serenity-footer-links li,
.essence-footer-links li {
    margin-bottom: var(--paradox-space-xs);
}

.serenity-footer-links a,
.essence-footer-links a {
    color: var(--chaos-cream);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: var(--paradox-space-xs);
    border-radius: 5px;
}

.serenity-footer-links a:hover,
.essence-footer-links a:hover {
    color: var(--essence-gold);
    background: rgba(212, 175, 55, 0.1);
    transform: translateX(5px);
}

.zenith-footer-bottom {
    text-align: center;
    padding-top: var(--serenity-space-sm);
    border-top: 1px solid var(--essence-gold);
    color: var(--chaos-cream);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .zenith-nav-links {
        display: none;
    }
    
    .paradox-menu-toggle {
        display: flex;
    }
    
    .essence-collection-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .zenith-authenticity-content {
        grid-template-columns: 1fr;
        gap: var(--serenity-space-sm);
    }
    
    .paradox-contact-content {
        grid-template-columns: 1fr;
        gap: var(--essence-space-lg);
    }
}

@media (max-width: 768px) {
    .paradox-content {
        flex-direction: column;
        text-align: center;
    }
    
    .chaos-actions {
        justify-content: center;
        width: 100%;
    }
    
    .zenith-hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .essence-collection-grid {
        grid-template-columns: 1fr;
        gap: var(--serenity-space-sm);
    }
    
    .essence-testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--serenity-space-sm);
    }
    
    .serenity-footer-content {
        grid-template-columns: 1fr;
        gap: var(--serenity-space-sm);
        text-align: center;
    }
    
    .essence-contact-info p {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    :root {
        font-size: 14px;
    }
    

    .paradox-hero-content {
        padding: var(--essence-space-lg) var(--serenity-space-sm);
    }
    
    .essence-collection,
    .chaos-expertise,
    .zenith-authenticity,
    .essence-testimonials,
    .paradox-contact {
        padding: var(--essence-space-lg) 0;
    }
    
    .serenity-container,
    .chaos-container,
    .essence-container,
    .zenith-container,
    .paradox-container {
        padding: 0 var(--paradox-space-xs);
    }
    
    .paradox-collection-description,
    .chaos-expertise-block,
    .essence-expertise-block,
    .paradox-authenticity-block,
    .serenity-authenticity-block,
    .zenith-testimonial-card,
    .serenity-contact-info,
    .zenith-contact-form {
        padding: var(--serenity-space-sm);
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

.essence-collection-grid > *,
.essence-testimonials-grid > *,
.zenith-authenticity-content > * {
    animation: fadeInUp 0.6s ease-out;
}

.essence-collection-grid > *:nth-child(2) {
    animation-delay: 0.2s;
}

.essence-collection-grid > *:nth-child(3) {
    animation-delay: 0.4s;
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }
.hidden { display: none; }
.visible { display: block; }

/* ===== POLICY PAGES RESPONSIVE FIXES ===== */
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--serenity-space-sm) 0;
    background: var(--chaos-cream);
    border-radius: 10px;
    overflow: hidden;
    display: block;
    white-space: nowrap;
}

.cookie-table-wrapper {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: var(--serenity-space-sm) 0;
}

.cookie-table th,
.cookie-table td {
    padding: var(--serenity-space-sm);
    text-align: left;
    border-bottom: 1px solid var(--essence-gold);
    white-space: nowrap;
}

.cookie-table th {
    background: var(--chaos-gold-gradient);
    color: var(--chaos-black);
    font-weight: 600;
    position: sticky;
    top: 0;
    z-index: 10;
}

/* ===== RESPONSIVE POLICY TABLES ===== */
@media (max-width: 1024px) {
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .cookie-table th,
    .cookie-table td {
        padding: var(--paradox-space-xs);
    }
}

@media (max-width: 768px) {
    .cookie-table {
        font-size: 0.8rem;
        display: block;
        width: 100%;
    }
    
    .cookie-table thead,
    .cookie-table tbody,
    .cookie-table th,
    .cookie-table td,
    .cookie-table tr {
        display: block;
    }
    
    .cookie-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }
    
    .cookie-table tr {
        background: var(--essence-ivory);
        border: 2px solid var(--essence-gold);
        border-radius: 10px;
        margin-bottom: var(--serenity-space-sm);
        padding: var(--serenity-space-sm);
    }
    
    .cookie-table td {
        border: none;
        position: relative;
        padding-left: 50% !important;
        text-align: left;
        white-space: normal;
        word-wrap: break-word;
    }
    
    .cookie-table td:before {
        content: attr(data-label) ": ";
        position: absolute;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
        font-weight: 600;
        color: var(--paradox-burgundy);
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: var(--serenity-space-sm);
        margin-bottom: var(--serenity-space-sm);
    }
    
    .cookie-table td {
        padding-left: 5px !important;
        font-size: 0.85rem;
    }
    
    .cookie-table td:before {
        position: relative;
        display: block;
        width: 100%;
        margin-bottom: 5px;
        padding-bottom: 5px;
        border-bottom: 1px solid var(--essence-gold);
    }
} 