/* Auriclens - Light Brown, White & Black Theme */
/* Global Reset */
.es-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.es-page {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #1a1a1a;
    background-color: #fff;
    line-height: 1.6;
}

/* Page Loader - Loading.. in German */
.es-page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f5f3f0 0%, #e8e4dc 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.es-page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.es-loader-content {
    text-align: center;
}

.es-loader-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B7355;
    letter-spacing: 0.1em;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 1; }
}

/* Header */
.es-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 20px rgba(139, 115, 85, 0.1);
    z-index: 1000;
    padding: 0;
}

.es-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
}

.es-logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: #8B7355 !important;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.es-nav-desktop {
    display: flex;
    align-items: center;
}

.es-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.es-link:hover {
    color: #8B7355;
}

/* Hamburger Menu */
.es-hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.es-hamburger-line {
    width: 100%;
    height: 3px;
    background: #8B7355;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.es-nav-mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(139, 115, 85, 0.5);
    z-index: 998;
}

.es-nav-mobile {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    z-index: 999;
    padding: 6rem 2rem 2rem;
    transition: right 0.3s ease;
}

.es-nav-mobile.active {
    right: 0;
}

.es-nav-mobile a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e4dc;
}

/* Container */
.es-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section */
.es-section {
    padding: 6rem 0;
}

/* Hero Section */
.es-hero {
    background: linear-gradient(180deg, #f5f3f0 0%, #fff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
}

.es-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.es-hero-content {
    max-width: 600px;
}

.es-badge {
    display: inline-block;
    background: #8B7355;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.es-heading-1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.es-heading-2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.es-heading-3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.es-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.8;
}

.es-mt-2 { margin-top: 0.5rem; }
.es-mt-4 { margin-top: 1rem; }
.es-mt-8 { margin-top: 2rem; }
.es-mb-2 { margin-bottom: 0.5rem; }
.es-mb-4 { margin-bottom: 1rem; }
.es-mb-8 { margin-bottom: 2rem; }

.es-hero-image {
    position: relative;
}

.es-hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(139, 115, 85, 0.2);
}

/* Price Box */
.es-price-box {
    background: #fff;
    border: 2px solid #e8e4dc;
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: inline-block;
    margin: 1.5rem 0;
    text-align: center;
}

.es-price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.es-price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: #8B7355;
}

.es-price-value {
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
}

.es-price-decimal {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.es-price-info {
    margin-top: 0.5rem;
}

.es-price-original {
    color: #999;
    text-decoration: line-through;
    font-size: 0.95rem;
}

.es-price-discount {
    background: #8B7355;
    color: #fff;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.es-price-tax {
    font-size: 0.8rem;
    color: #999;
    margin-top: 0.5rem;
}

/* Buttons */
.es-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.es-btn-primary {
    background: #8B7355;
    color: #fff;
}

.es-btn-primary:hover {
    background: #6d5a44;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.3);
}

/* Features Section */
.es-features {
    background: #1a1a1a;
    color: #fff;
}

.es-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.es-feature-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.es-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.es-feature-icon {
    width: 50px;
    height: 50px;
    background: #8B7355;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.es-feature-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.es-feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #fff;
}

.es-feature-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Gallery Section */
.es-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.es-gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.es-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.es-gallery-item:hover img {
    transform: scale(1.05);
}

/* Article Container */
.es-article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.es-article-body {
    margin-top: 3rem;
}

.es-article-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Pros Cons Box */
.es-pros-cons-box {
    background: #f9f7f4;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
}

.es-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.es-list {
    list-style: none;
    padding: 0;
}

.es-list-item {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.es-list-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: #8B7355;
    border-radius: 50%;
}

.es-list-item.es-list-negative::before {
    background: #999;
}

/* CTA Section */
.es-cta-section {
    background: linear-gradient(135deg, #8B7355 0%, #6d5a44 100%);
    color: #fff;
    text-align: center;
}

.es-cta-section h2,
.es-cta-section h3 {
    color: #fff;
}

.es-cta-section p {
    color: rgba(255, 255, 255, 0.9);
}

.es-offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1rem 2rem;
    margin: 1.5rem 0;
}

.es-offer-price {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.es-offer-original {
    display: block;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
    margin-top: 0.25rem;
}

.es-text-center {
    text-align: center;
}

/* Footer */
.es-footer {
    background: #1a1a1a;
    padding: 4rem 0 2rem;
}

.es-grid-3 {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.es-footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.es-footer-link:hover {
    color: #8B7355;
}

/* Disclosure */
.es-disclosure {
    background: #f5f3f0;
    padding: 1rem 0;
    border-bottom: 1px solid #e8e4dc;
}

.es-disclosure-text {
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

/* Image Grid */
.es-img-fluid {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
    .es-hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .es-hero-content {
        max-width: 100%;
        text-align: center;
    }

    .es-heading-1 {
        font-size: 2.5rem;
    }

    .es-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .es-nav-desktop {
        display: none;
    }

    .es-hamburger {
        display: flex;
    }

    .es-nav-mobile-overlay.active {
        display: block;
    }

    .es-nav-mobile.active {
        display: block;
    }

    .es-heading-1 {
        font-size: 2rem;
    }

    .es-heading-2 {
        font-size: 1.5rem;
    }

    .es-features-grid {
        grid-template-columns: 1fr;
    }

    .es-grid-2 {
        grid-template-columns: 1fr;
    }

    .es-gallery-grid {
        grid-template-columns: 1fr;
    }

    .es-grid-3 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .es-section {
        padding: 4rem 0;
    }

    .es-container {
        padding: 0 1.5rem;
    }

    .es-price-box {
        width: 100%;
    }

    .es-btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .es-heading-1 {
        font-size: 1.75rem;
    }

    .es-price-value {
        font-size: 2.5rem;
    }

    .es-hero {
        padding-top: 4rem;
    }
}

/* --- Added Premium Styles --- */

/* Footer Disclosure */
.es-footer-disclosure {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.25rem 1.5rem;
    margin-top: 2rem;
    color: #bbb;
    font-size: 0.85rem;
    line-height: 1.6;
    text-align: left;
}

/* Contact Page Grid & Detail Card */
.es-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    align-items: start;
}

.es-contact-info-card {
    background: #fdfcfb;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.05);
}

.es-contact-detail-item {
    margin-bottom: 2rem;
}

.es-contact-detail-item:last-child {
    margin-bottom: 0;
}

.es-contact-detail-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #8B7355;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.es-contact-detail-value {
    font-size: 1.1rem;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

.es-contact-detail-value a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.es-contact-detail-value a:hover {
    color: #8B7355;
}

/* Rating Breakdown */
.es-rating-section {
    background: #fdfcfb;
    border: 1px solid #e8e4dc;
    border-radius: 16px;
    padding: 2.5rem;
    margin-top: 3rem;
    box-shadow: 0 10px 30px rgba(139, 115, 85, 0.03);
}

.es-rating-list {
    margin-top: 2rem;
}

.es-rating-bar-item {
    margin-bottom: 1.5rem;
}

.es-rating-bar-item:last-child {
    margin-bottom: 0;
}

.es-rating-bar-header {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.es-rating-bar-bg {
    height: 8px;
    background: #e8e4dc;
    border-radius: 4px;
    overflow: hidden;
}

.es-rating-bar-fill {
    height: 100%;
    background: #8B7355;
    border-radius: 4px;
    transition: width 1s ease-out;
}

/* FAQ Accordion */
.es-faq-section {
    margin-top: 4rem;
    border-top: 1px solid #e8e4dc;
    padding-top: 3rem;
}

.es-faq-list {
    margin-top: 2rem;
}

.es-faq-item {
    border-bottom: 1px solid #e8e4dc;
    padding: 1.5rem 0;
}

.es-faq-item:last-child {
    border-bottom: none;
}

.es-faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.es-faq-answer {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
    display: none;
}

.es-faq-item.active .es-faq-answer {
    display: block;
}

.es-faq-icon {
    font-weight: 400;
    font-size: 1.5rem;
    color: #8B7355;
    transition: transform 0.3s;
}

.es-faq-item.active .es-faq-icon {
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .es-contact-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}