/* 
========================================
deinschuhs - Veloursleder-Boots
Theme: Deep Ocean Blue & Warm Sand
========================================
*/

/* ========== CSS RESET & VARIABLES ========== */
:root {
    /* New Theme Colors for deinschuhs */
    --primary-blue: #1A4B77;
    /* Deep Ocean Blue - boots color */
    --primary-blue-light: #2D5F8C;
    --primary-blue-dark: #0E3A5A;
    --secondary-sand: #C4A484;
    /* Warm Sand - suede/leather inspired */
    --secondary-sand-light: #E0C9B6;
    --accent-cream: #F8F4E9;
    /* Soft Cream background */
    --accent-terracotta: #E07A5F;
    /* Sale accent */
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --overlay-dark: rgba(26, 75, 119, 0.8);
    --overlay-light: rgba(248, 244, 233, 0.95);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(26, 75, 119, 0.08);
    --shadow-md: 0 4px 12px rgba(26, 75, 119, 0.15);
    --shadow-lg: 0 8px 24px rgba(26, 75, 119, 0.2);
    --shadow-sand: 0 4px 12px rgba(196, 164, 132, 0.3);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* 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-blue);
    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(--secondary-sand), transparent);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 300;
}

/* ========== PAGE LOADER ========== */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-blue);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.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-sand);
    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;
}

/* ========== ADVERTISEMENT NOTICE ========== */
.ad-notice-top {
    background: linear-gradient(135deg, var(--secondary-sand), var(--secondary-sand-light));
    color: var(--primary-blue-dark);
    padding: 0.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom: 3px solid var(--primary-blue);
    transition: transform 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
    height: 40px;
    /* Fixed height for easier offset management if needed */
    display: flex;
    align-items: center;
    justify-content: center;
}

.ad-notice-top.ad-hidden {
    transform: translateY(-100%);
    opacity: 0;
    margin-top: -40px;
    pointer-events: none;
}

.ad-notice-text {
    animation: softPulse 2s infinite;
}

@keyframes softPulse {
    0% {
        opacity: 0.9;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.9;
    }
}

/* ========== COOKIE CONSENT ========== */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: linear-gradient(135deg, var(--white), var(--accent-cream));
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(200%);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-left: 4px solid var(--primary-blue);
    border-right: 4px solid var(--secondary-sand);
}

.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(--primary-blue);
}

.cookie-text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    flex: 1;
    padding: 0.75rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
}

.cookie-btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sand);
}

.cookie-btn-reject {
    background-color: var(--secondary-sand-light);
    color: var(--text-dark);
}

.cookie-btn-reject:hover {
    background-color: var(--secondary-sand);
}

/* ========== HEADER ========== */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid var(--secondary-sand);
}

.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(--primary-blue);
}

.logo-highlight {
    color: var(--secondary-sand);
    font-weight: 400;
    font-style: italic;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-sand));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cta-button {
    background: linear-gradient(135deg, var(--accent-terracotta), #c95f45);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
    border: 1px solid var(--white);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 122, 95, 0.4);
    background: linear-gradient(135deg, #c95f45, var(--accent-terracotta));
}

/* ========== 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(--primary-blue);
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -75%;
    width: 75%;
    height: 100vh;
    background: linear-gradient(135deg, var(--white), var(--accent-cream));
    z-index: 1000;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    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(--secondary-sand);
}

.mobile-menu-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-blue);
    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(--primary-blue);
}

.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: 30px;
    transition: all 0.3s ease;
    background-color: var(--white);
    border: 1px solid var(--secondary-sand-light);
}

.mobile-nav-link:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    transform: translateX(5px);
}

.mobile-menu-footer {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 2px solid var(--secondary-sand);
}

.mobile-cta {
    display: block;
    text-align: center;
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent-cream) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 75, 119, 0.03) 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: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-badge {
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-badge-eco {
    background-color: var(--primary-blue-light);
    color: var(--white);
}

.hero-badge-sale {
    background-color: var(--accent-terracotta);
    color: var(--white);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.1;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--primary-blue);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.hero-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.3rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-terracotta);
}

.price-tax {
    font-size: 0.9rem;
    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-instock {
    background-color: #27ae60;
    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.75rem;
    display: flex;
    align-items: center;
}

.hero-feature::before {
    content: '✓';
    color: var(--primary-blue);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.hero-eco-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background-color: rgba(26, 75, 119, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.eco-icon {
    font-size: 1.5rem;
}

.eco-text {
    color: var(--primary-blue);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-image {
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-image {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.5s ease;
    border: 2px solid var(--secondary-sand-light);
}

.product-image:hover {
    transform: scale(1.02);
}

.image-thumbnails {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    justify-content: center;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    cursor: pointer;
    opacity: 0.6;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.thumbnail.active,
.thumbnail:hover {
    opacity: 1;
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

/* ========== 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);
}

.dropcap {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    float: left;
    line-height: 0.8;
    margin-right: 0.5rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.about-paragraph {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-signature {
    margin-top: 2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    padding: 2rem;
    background: linear-gradient(135deg, var(--accent-cream), var(--white));
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid var(--secondary-sand-light);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-sand);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ========== 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: 20px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.4s ease;
    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-blue), var(--secondary-sand));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary-sand);
}

.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(--primary-blue);
}

.why-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========== DETAILS SECTION ========== */
.details-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.details-card {
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.details-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.details-card-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    border-bottom: 2px solid var(--secondary-sand-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: 130px;
}

.color-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--white), var(--accent-cream));
    border-radius: 16px;
}

.color-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.color-name {
    color: var(--primary-blue);
    font-weight: 600;
}

.color-swatch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.color-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-block;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--white);
}

.color-hex {
    color: var(--text-light);
    font-family: monospace;
    font-size: 1rem;
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 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 10 L50 30 L30 50 L10 30 Z" fill="none" stroke="rgba(248,244,233,0.1)" 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: 20px;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px) scale(1.02);
}

.testimonial-rating {
    color: var(--secondary-sand);
    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: 2px solid var(--secondary-sand-light);
    padding-top: 1rem;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-verified {
    font-size: 0.85rem;
    color: var(--secondary-sand);
}

/* ========== 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(--secondary-sand-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    background-color: var(--accent-cream);
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: linear-gradient(135deg, var(--secondary-sand-light), var(--accent-cream));
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.faq-icon {
    color: var(--primary-blue);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.25rem;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    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;
}

/* ========== RETURN POLICY SECTION ========== */
.return-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--accent-cream) 0%, var(--white) 100%);
}

.return-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-blue);
    position: relative;
}

.return-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--secondary-sand), transparent);
}

.return-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.return-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border-bottom: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.return-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.return-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.return-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== FOOTER ========== */
.footer {
    background-color: var(--primary-blue-dark);
    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(--secondary-sand), var(--white), var(--secondary-sand));
}

.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(--secondary-sand);
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary-sand);
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-contact-item {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.contact-label {
    color: var(--secondary-sand);
    font-weight: 500;
}

.footer-list-item {
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-link:hover {
    color: var(--secondary-sand);
    transform: translateX(5px);
}

.footer-address-text {
    color: rgba(255, 255, 255, 0.7);
    font-style: normal;
    line-height: 1.8;
}

.footer-ad-note {
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(196, 164, 132, 0.1);
    border-left: 4px solid var(--secondary-sand);
    border-radius: 4px;
}

.ad-note-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-important {
    margin: 2rem 0;
    padding: 1rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    text-align: center;
    border: 1px solid var(--secondary-sand);
}

.important-text {
    color: var(--secondary-sand);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* ========== POPUPS ========== */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 75, 119, 0.8);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.popup-overlay.active {
    display: flex;
    opacity: 1;
}

.popup-container {
    background: linear-gradient(135deg, var(--white), var(--accent-cream));
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: popupScale 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes popupScale {
    from {
        transform: scale(0.5);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.popup-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-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 0.3s ease;
}

.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(--primary-blue);
    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-blue), var(--primary-blue-dark));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--secondary-sand);
}

.cookie-save-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sand);
}

/* ========== MEDIA QUERIES ========== */
@media screen and (max-width: 1024px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .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;
    }

    .header-actions .cta-button {
        display: none;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .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;
    }

    .image-thumbnails {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .hero-badge-group {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-availability {
        flex-direction: column;
        align-items: flex-start;
    }

    .popup-container {
        width: 95%;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }
}