/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d3748;
    --primary-dark: #1a202c;
    --primary-light: #4a5568;
    --secondary: #171923;
    --accent: #D4AF37;
    /* Metallic Gold */
    --accent-dark: #B8860B;
    /* Dark Goldenrod */
    --accent-light: #F0E68C;
    /* Khaki */
    --text-dark: #1a202c;
    --text-medium: #4a5568;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}

.link {
    text-decoration: none;
    color: inherit;
}

.btn-base {
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== STICKY NAV WRAPPER ===== */
.sticky-nav-wrapper {
    position: sticky;
    top: calc(-1 * var(--ad-height, 0px));
    z-index: 1000;
    transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== AD BAR ===== */
.ad-bar {
    background: #1a202c;
    color: #edf2f7;
    padding: 10px 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1001;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #D4AF37;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.ad-icon {
    color: #D4AF37;
    margin-right: 8px;
}

/* ===== LOADER ===== */
.loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease;
}

.loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-inner {
    text-align: center;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 16px;
}

.loader-name {
    color: var(--bg-white);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ===== COOKIE ===== */
.cookie-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cookie-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.cookie-box {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 32px 28px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    border-top: 4px solid var(--accent);
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 12px;
}

.cookie-title {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 0 10px;
}

.cookie-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 20px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-accept {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-white);
    border: none;
}

.btn-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 85, 104, 0.4);
}

.btn-reject {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-reject:hover {
    background: var(--primary);
    color: var(--bg-white);
}

/* ===== HEADER & NAVIGATION ===== */
.header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--primary-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.header.scrolled {
    background: #000000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar {
    height: 80px;
    background: transparent;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    color: var(--accent);
    font-size: 1.8rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -0.5px;
    text-transform: capitalize;
    /* Matches ArbeitLuxe style better */
}

.logo-accent {
    color: var(--bg-white);
    position: relative;
    opacity: 0.9;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    color: var(--bg-white);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s;
    opacity: 0.8;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--accent);
    opacity: 1;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-shop {
    background: var(--bg-white);
    color: var(--primary-dark) !important;
    padding: 10px 24px;
    border-radius: 4px;
    /* More rectangular like the reference */
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
}

.btn-shop:hover {
    background: var(--accent);
    color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.shop-icon {
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
}

.hamburger-line {
    width: 26px;
    height: 2.5px;
    background: var(--bg-white);
    border-radius: 2px;
    display: block;
    transition: all 0.3s;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 5% 60px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: flex;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-craft {
    background: rgba(74, 85, 104, 0.1);
    color: var(--primary);
    border: 1px solid rgba(74, 85, 104, 0.2);
}

.badge-eco {
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-dark);
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.hero-badge-icon {
    color: var(--accent);
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary);
    margin: 0 0 15px;
}

.highlight {
    color: var(--accent);
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0 0 25px;
    max-width: 500px;
}

.hero-price {
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
}

.price-current {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
}

.price-tax {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-availability {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
}

.availability-instock {
    background: var(--accent);
    color: var(--secondary);
}

.availability-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

.hero-features {
    margin-bottom: 30px;
    list-style: none;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.hero-features i {
    color: var(--accent);
    width: 20px;
    font-size: 1rem;
}

.hero-dimensions {
    display: flex;
    gap: 40px;
    margin-bottom: 35px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    width: fit-content;
}

.dimension-item {
    text-align: center;
    position: relative;
}

.dimension-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 30px;
    background: var(--border);
}

.dimension-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.dimension-label {
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--bg-white);
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    box-shadow: 0 6px 18px rgba(74, 85, 104, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(74, 85, 104, 0.4);
}

.hero-visual {
    flex: 0 0 400px;
}

.product-showcase {
    position: relative;
    background: var(--bg-white);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(74, 85, 104, 0.1);
    border: 1px solid var(--border);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent);
    color: var(--secondary);
    padding: 4px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.product-image-wrap {
    margin-bottom: 20px;
}

.product-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    transition: transform 0.3s;
}

.product-img:hover {
    transform: scale(1.02);
}

.thumbnail-strip {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.thumbnail:hover,
.thumbnail.active {
    opacity: 1;
    border-color: var(--accent);
}

.scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid var(--border);
}

.scroll-hint-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ===== SECTIONS ===== */
.section {
    padding: 80px 5%;
    scroll-margin-top: 100px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-dark);
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--primary);
    margin: 0 0 12px;
    font-weight: 700;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    margin: 0 auto;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
}

.about-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(74, 85, 104, 0.1);
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--secondary);
    padding: 14px 20px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
}

.about-lead {
    font-size: 1.3rem;
    color: var(--primary);
    margin: 0 0 20px;
    font-weight: 500;
    line-height: 1.5;
}

.about-body {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 20px;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ===== QUALITÄT ===== */
.qualitat {
    background: var(--bg-light);
}

.qualitat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.qualitat-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--border);
    text-align: center;
    box-shadow: var(--shadow);
}

.qualitat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.qualitat-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, var(--bg-white), rgba(251, 191, 36, 0.05));
}

.qualitat-icon {
    margin-bottom: 20px;
}

.qualitat-icon-item {
    font-size: 2.5rem;
    color: var(--primary);
}

.qualitat-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0 0 12px;
    font-weight: 600;
}

.qualitat-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 20px;
}

.qualitat-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: var(--accent-dark);
    padding: 4px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* ===== DETAILS ===== */
.details {
    background: var(--bg-white);
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.details-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 16px;
    border-left: 4px solid var(--accent);
}

.details-title {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.details-title-icon {
    color: var(--accent);
}

.details-list {
    list-style: none;
}

.details-list-item {
    margin-bottom: 10px;
    color: var(--text-light);
    display: flex;
    align-items: baseline;
}

.detail-label {
    font-weight: 600;
    color: var(--text-dark);
    min-width: 130px;
}

.details-list-icon {
    color: var(--accent);
    margin-right: 8px;
    width: 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--bg-white);
}

.testimonials .section-title,
.testimonials .section-title .highlight {
    color: var(--bg-white);
}

.testimonials .title-line {
    background: var(--accent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 16px;
    transition: all 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--bg-white), rgba(251, 191, 36, 0.1));
    border: 2px solid var(--accent);
}

.testimonial-stars {
    color: var(--accent);
    margin-bottom: 15px;
    font-size: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--border);
    padding-top: 15px;
}

.author-name {
    font-weight: 600;
    color: var(--primary);
}

.author-verified {
    color: var(--accent);
    font-size: 0.8rem;
}

.author-verified-icon {
    margin-right: 3px;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-light);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--primary);
    transition: background 0.2s;
    border: none;
    background: var(--bg-white);
    text-align: left;
}

.faq-question:hover {
    background: rgba(251, 191, 36, 0.05);
}

.faq-icon {
    color: var(--accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-text {
    padding: 0 22px 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.75;
    margin: 0;
}

/* ===== RETURN ===== */
.return {
    background: var(--bg-white);
}

.return-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.return-card {
    background: var(--bg-light);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.return-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: var(--shadow);
}

.return-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.return-title {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.return-text {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--secondary);
    color: var(--bg-white);
    position: relative;
    overflow: hidden;
}

.footer-wave {
    line-height: 0;
    margin-bottom: -1px;
}

.footer-wave svg {
    width: 100%;
    height: 60px;
    display: block;
}

.footer-body {
    padding: 50px 5% 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-logo-accent {
    color: var(--accent);
}

.footer-logo-icon {
    color: var(--accent);
    margin-right: 8px;
}

.footer-tagline {
    font-size: 0.88rem;
    color: #a0aec0;
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    color: var(--accent);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 18px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: #a0aec0 !important;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--accent) !important;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #a0aec0;
}

.contact-icon {
    color: var(--accent);
    margin-top: 2px;
    width: 18px;
}

.contact-link {
    color: #a0aec0 !important;
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--accent) !important;
}

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 0.75rem;
    color: #a0aec0;
    text-align: center;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright-text {
    margin: 0;
    font-size: 0.8rem;
    color: #a0aec0;
}

/* ===== MODALS ===== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 30000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    background: var(--bg-white);
    border-radius: 16px;
    width: min(90vw, 560px);
    max-height: 80vh;
    z-index: 30001;
    display: flex;
    flex-direction: column;
    opacity: 0;
    pointer-events: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    border-top: 4px solid var(--accent);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
    transform: translate(-50%, -50%);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid var(--border);
    flex-shrink: 0;
}

.modal-title {
    margin: 0;
    font-size: 1.3rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.modal-header-icon {
    color: var(--accent);
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.2rem;
    transition: all 0.2s;
    text-decoration: none;
}

.modal-close:hover {
    color: var(--accent);
}

.modal-body {
    padding: 22px 26px;
    overflow-y: auto;
    flex: 1;
}

.modal-subtitle {
    color: var(--primary);
    font-size: 0.95rem;
    margin: 18px 0 6px;
}

.modal-text {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 6px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .qualitat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .return-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .hero-visual {
        flex: 0 0 350px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -80%;
        width: 80%;
        height: 100vh;
        background: var(--primary-dark);
        flex-direction: column;
        padding: 60px 30px 40px;
        /* More top padding to clear status bars if any, and for visual balance */
        gap: 0;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.6);
        transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 20000;
        /* High enough to be over EVERYTHING including ad-bar */
        overflow-y: auto;
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

    .nav-links.open {
        right: 0;
    }

    .nav-close {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        color: var(--accent);
        font-size: 1.8rem;
        cursor: pointer;
        position: absolute;
        top: 20px;
        right: 20px;
        width: auto;
        background: none;
        border: none;
        transition: transform 0.3s ease;
        z-index: 20001;
    }

    .nav-close:hover {
        transform: rotate(90deg);
    }

    .nav-link {
        padding: 18px 0;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        color: var(--bg-white);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .nav-link::after {
        content: '\f105';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: static;
        width: auto;
        height: auto;
        background: none;
        opacity: 0.5;
    }

    .btn-shop {
        margin-top: 12px;
        text-align: center;
        width: 100%;
    }

    .hero-content {
        flex-direction: column-reverse;
        gap: 40px;
        text-align: center;
    }

    .hero-text {
        width: 100%;
    }

    .hero-badge {
        justify-content: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        text-align: left;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-dimensions {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        flex: none;
        max-width: 350px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image-wrap {
        order: 2;
    }

    .about-content {
        order: 1;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .about-badge-float {
        right: 0;
        bottom: -15px;
    }

    .qualitat-grid {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .footer-links {
        align-items: center;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact li {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .section {
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .hero-badge {
        flex-direction: column;
        gap: 8px;
        align-items: center;
    }

    .hero-dimensions {
        flex-direction: column;
        gap: 15px;
    }

    .return-grid {
        grid-template-columns: 1fr;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .modal {
        width: 95vw;
    }
}