/* Design System */
:root {
    --primary-color: #5d4037; /* Leather Brown */
    --accent-color: #d84315; /* Rust/Autumn */
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-white: #ffffff;
    --bg-warm: #fdfaf7;
    --bg-dark: #121212;
    --footer-bg: #1a1a1a;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-premium: 0 10px 30px rgba(0,0,0,0.08);
}

/* Reset-like base using classes where possible, or body since it's the container */
body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loader */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

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

.loader-logo {
    color: var(--bg-white);
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.loader-bar-container {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--accent-color);
    animation: loading 2s infinite ease-in-out;
}

@keyframes loading {
    0% { width: 0%; }
    50% { width: 100%; }
    100% { width: 0%; }
}

/* Advertisement Bars */
.ad-top-bar {
    background-color: #f4f4f4;
    padding: 10px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.ad-text {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.ad-footer-note {
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.ad-text-small {
    margin: 0;
    font-size: 12px;
    color: #888;
}

/* Header */
.main-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container .logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
}

.nav-link:hover {
    color: var(--accent-color);
}

.cta-button {
    background-color: var(--primary-color);
    color: white;
    padding: 12px 28px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition-smooth);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(216, 67, 21, 0.3);
}

.cta-button.large {
    padding: 16px 40px;
    font-size: 18px;
}

.cta-button.fluid {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* Hamburger */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background-color: var(--bg-warm);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hero-trust-tag {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.hero-trust-tag::before {
    content: '✓';
    margin-right: 8px;
    color: #2e7d32;
}

.product-img-main {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-premium);
}

/* Product Gallery */
.product-gallery {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-img {
    width: 100%;
    border-radius: 4px;
    transition: var(--transition-smooth);
    cursor: zoom-in;
}

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

/* Features */
.features-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    margin-bottom: 15px;
}

.title-underline {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-premium);
}

.feature-icon-box {
    margin-bottom: 25px;
    color: var(--accent-color);
}

.feature-title {
    font-size: 20px;
    margin-bottom: 15px;
}

.feature-desc {
    font-size: 15px;
    color: var(--text-light);
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 60px 0;
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.lifestyle-item.large {
    grid-row: 1 / 3;
}

.lifestyle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* About Section */
.about-section {
    padding: 100px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--text-light);
}

.about-image {
    position: relative;
}

.image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border-top: 5px solid var(--accent-color);
    border-right: 5px solid var(--accent-color);
    z-index: -1;
}

.about-img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--bg-warm);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.testimonial-rating {
    color: #ffb400;
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-body {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.testimonial-author {
    font-weight: 700;
    font-size: 14px;
    color: var(--primary-color);
}

/* FAQ */
.faq-section {
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 18px;
}

.faq-toggle {
    font-size: 24px;
    color: var(--accent-color);
}

.faq-answer {
    padding-top: 15px;
    color: var(--text-light);
    display: none;
}

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

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

/* Footer */
.main-footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    margin-bottom: 25px;
}

.contact-item {
    margin: 10px 0;
    font-size: 14px;
    color: #ccc;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-size: 15px;
}

.footer-link:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 40px;
    text-align: center;
}

.consumer-protection {
    margin: 20px 0;
}

.consumer-text {
    font-size: 13px;
    color: #888;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.4;
}

.copyright-bar {
    margin-top: 30px;
}

.copyright-text {
    font-size: 12px;
    color: #666;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 20px;
    right: 20px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 -10px 50px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: bottom 0.5s ease;
    max-width: 500px;
    margin: 0 auto;
}

.cookie-popup.active {
    bottom: 20px;
}

.cookie-title {
    margin-bottom: 10px;
    font-size: 20px;
}

.cookie-text {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    flex: 1;
}

.cookie-btn.accept {
    background-color: var(--primary-color);
    color: white;
}

.cookie-btn.reject {
    background-color: #eee;
    color: #666;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    padding: 50px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 30px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: var(--bg-white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.1, 0.7, 0.6, 0.9);
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
}

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

.mobile-nav-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.close-icon {
    font-size: 40px;
    cursor: pointer;
    color: var(--primary-color);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-list, .header-cta {
        display: none;
    }
    
    .hamburger-menu {
        display: block;
    }
    
    .hero-grid, .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .gallery-grid, .features-grid, .testimonials-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 576px) {
    .gallery-grid, .features-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-item.large {
        grid-row: auto;
    }
}
