/* 
========================================
TABLE OF CONTENTS
========================================
1. CSS RESET & VARIABLES
2. LOADER
3. ADVERTISEMENT NOTICE
4. COOKIE CONSENT
5. HEADER & NAVIGATION
6. HAMBURGER MENU
7. HERO SECTION
8. ABOUT SECTION
9. WHY US SECTION
10. DETAILS SECTION
11. TESTIMONIALS SECTION
12. FAQ SECTION
13. RETURN POLICY SECTION
14. FOOTER
15. POPUPS
16. MEDIA QUERIES
========================================
*/

/* ========== 1. CSS RESET & VARIABLES ========== */
:root {
    /* New Theme Colors for ringzhome */
    --primary-gold: #D4AF37;
    --primary-gold-light: #E5C87B;
    --primary-gold-dark: #B8860B;
    --secondary-emerald: #046307;
    --secondary-emerald-light: #2E7D32;
    --accent-cream: #FAF9F6;
    --accent-cream-dark: #F5F0E6;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --black: #000000;
    --overlay-dark: rgba(0, 0, 0, 0.5);
    --overlay-light: rgba(255, 255, 255, 0.9);
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 12px rgba(212, 175, 55, 0.3);
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-normal: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Container */
    --container-width: 1200px;
    --container-padding: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--accent-cream);
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title .highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.section-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ========== 2. LOADER ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-gold);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity var(--transition-normal), visibility var(--transition-normal);
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--accent-cream);
    border-top-color: var(--secondary-emerald);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loader-text {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 2px;
}

/* ========== 3. ADVERTISEMENT NOTICE ========== */
.ad-notice-top {
    background-color: var(--secondary-emerald);
    color: var(--white);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 500;
    border-bottom: 2px solid var(--primary-gold);
}

.ad-notice-text {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.9; }
    50% { opacity: 1; }
    100% { opacity: 0.9; }
}

/* ========== 4. COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(200%);
    transition: transform var(--transition-normal);
    border-left: 4px solid var(--primary-gold);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    padding: 1.5rem;
}

.cookie-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cookie-btn-accept {
    background-color: var(--primary-gold);
    color: var(--white);
}

.cookie-btn-accept:hover {
    background-color: var(--primary-gold-dark);
}

.cookie-btn-reject {
    background-color: var(--text-light);
    color: var(--white);
}

.cookie-btn-reject:hover {
    background-color: var(--text-dark);
}

/* ========== 5. HEADER & NAVIGATION ========== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid var(--primary-gold);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-emerald);
    letter-spacing: 1px;
    position: relative;
}

.logo-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color var(--transition-fast);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-gold);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-gold);
    border: 1px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--primary-gold-dark), var(--primary-gold));
}

/* ========== 6. HAMBURGER MENU ========== */
.hamburger-btn {
    width: 40px;
    height: 40px;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 101;
}

.hamburger-line {
    width: 30px;
    height: 2px;
    background-color: var(--secondary-emerald);
    transition: all var(--transition-fast);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-cream) 100%);
    z-index: 1000;
    transition: right var(--transition-normal);
    box-shadow: var(--shadow-lg);
    padding: 2rem;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-gold);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--secondary-emerald);
    font-weight: 600;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
    border: none;
    cursor: pointer;
}

.close-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--secondary-emerald);
}

.close-line:first-child {
    transform: rotate(45deg);
}

.close-line:last-child {
    transform: rotate(-45deg);
}

.mobile-nav-list {
    margin-bottom: 2rem;
}

.mobile-nav-item {
    margin-bottom: 1rem;
}

.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-radius: 8px;
    transition: all var(--transition-fast);
    background-color: var(--white);
    border: 1px solid var(--accent-cream-dark);
}

.mobile-nav-link:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateX(5px);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid var(--accent-cream-dark);
}

.mobile-cta {
    display: block;
    text-align: center;
}

/* ========== 7. HERO SECTION ========== */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 1s ease;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: var(--secondary-emerald);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-gold);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), transparent);
}

.hero-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-emerald);
}

.price-tax {
    font-size: 1rem;
    color: var(--text-light);
}

.hero-availability {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.availability-badge {
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

.availability-low {
    background-color: #ff6b6b;
    color: var(--white);
}

.availability-date {
    color: var(--text-light);
    font-size: 0.95rem;
}

.hero-features {
    margin-bottom: 2rem;
}

.hero-feature {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.hero-feature::before {
    content: '✓';
    color: var(--primary-gold);
    font-weight: bold;
    margin-right: 0.75rem;
}

.hero-image {
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.product-image:hover {
    transform: scale(1.02);
}

/* ========== 8. ABOUT SECTION ========== */
.about-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: var(--text-light);
}

.about-paragraph {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-fast);
    border: 1px solid var(--primary-gold-light);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========== 9. WHY US SECTION ========== */
.why-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all var(--transition-normal);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-emerald));
    transform: scaleX(0);
    transition: transform var(--transition-normal);
    transform-origin: left;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold-light);
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-emerald);
}

.why-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== 10. DETAILS SECTION ========== */
.details-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.details-card {
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-gold);
}

.details-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-emerald);
    border-bottom: 2px solid var(--primary-gold-light);
    padding-bottom: 0.5rem;
}

.details-list {
    list-style: none;
}

.details-item {
    margin-bottom: 0.75rem;
    color: var(--text-light);
    display: flex;
    align-items: baseline;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 150px;
}

.color-swatches {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.color-swatch {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-block;
}

.color-label {
    color: var(--text-dark);
}

/* ========== 11. TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--secondary-emerald) 0%, var(--secondary-emerald-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><path d="M30 5 L55 30 L30 55 L5 30 Z" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
    opacity: 0.1;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-fast);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-rating {
    color: var(--primary-gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    border-top: 1px solid var(--accent-cream-dark);
    padding-top: 1rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--secondary-emerald);
    margin-bottom: 0.25rem;
}

.author-verified {
    font-size: 0.85rem;
    color: var(--primary-gold);
}

/* ========== 12. FAQ SECTION ========== */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--accent-cream-dark);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-fast);
}

.faq-item:hover {
    border-color: var(--primary-gold);
}

.faq-question {
    background-color: var(--accent-cream);
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background-color: var(--primary-gold-light);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    color: var(--primary-gold);
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.25rem;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.25rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== 13. RETURN POLICY SECTION ========== */
.return-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
}

.return-content {
    max-width: 1000px;
    margin: 0 auto;
}

.return-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--secondary-emerald);
    position: relative;
}

.return-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
}

.return-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.return-card {
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-gold);
}

.return-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-emerald);
    margin-bottom: 1rem;
}

.return-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== 14. FOOTER ========== */
.footer {
    background-color: #1a1a1a;
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-emerald), var(--primary-gold));
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-gold);
}

.footer-text {
    color: #999;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-item {
    color: #999;
    margin-bottom: 0.5rem;
}

.contact-label {
    color: var(--primary-gold);
    font-weight: 500;
}

.footer-list-item {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: #999;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-link:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-address-text {
    color: #999;
    font-style: normal;
    line-height: 1.8;
}

.footer-ad-note {
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--primary-gold);
    border-radius: 4px;
}

.ad-note-text {
    color: #999;
    font-size: 0.9rem;
}

.footer-important {
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(4, 99, 7, 0.1);
    border-radius: 4px;
    text-align: center;
}

.important-text {
    color: var(--primary-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.copyright-text {
    color: #666;
    font-size: 0.9rem;
}

/* ========== 15. POPUPS ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-dark);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-container {
    background-color: var(--white);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: popupScale 0.3s ease;
}

@keyframes popupScale {
    from {
        transform: scale(0.7);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--white);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.popup-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
}

.popup-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color var(--transition-fast);
}

.popup-close:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.popup-content {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 70px);
}

.impressum-content p,
.privacy-content p,
.terms-content p,
.cookies-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.impressum-content h3,
.privacy-content h3,
.terms-content h3,
.cookies-content h3 {
    color: var(--secondary-emerald);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.cookie-settings-buttons {
    margin-top: 2rem;
    text-align: center;
}

.cookie-save-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--primary-gold-dark));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.cookie-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ========== 16. MEDIA QUERIES ========== */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }
    
    .header-actions {
        gap: 1rem;
    }
    
    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .return-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cookie-consent {
        left: 10px;
        right: 10px;
        max-width: none;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .price-current {
        font-size: 2rem;
    }
    
    .hero-availability {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .popup-container {
        width: 95%;
    }
}