/* Custom Reset using classes ONLY! Since we can't use * we rely on explicit classes for reset */
.page-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: #333333;
    background-color: #fcfcfc;
    box-sizing: border-box;
}

/* Base utility classes for elements */
.nav-list, .mobile-nav-list, .feature-list, .footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link, .mobile-nav-link, .cta-button, .footer-link {
    text-decoration: none;
    color: inherit;
}

.hero-img, .content-img, .card-img {
    max-width: 100%;
    display: block;
    height: auto;
    border-radius: 8px;
}

.section-title, .hero-title, .card-title, .cookie-title, .footer-heading, .faq-question {
    margin-top: 0;
}

.hero-subtitle, .section-text, .card-text, .testimonial-text, .faq-answer, .cookie-text, .footer-text, .footer-ad-text, .important-note-text, .copyright-text {
    margin-top: 0;
    line-height: 1.6;
}

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

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader-text {
    font-size: 24px;
    font-weight: 700;
    color: #d1a179;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.6; transform: scale(0.98); }
}

/* Top Ad Notice */
.top-ad-notice {
    background-color: #f1f1f1;
    text-align: center;
    padding: 8px 15px;
    font-size: 12px;
    color: #555555;
    border-bottom: 1px solid #e0e0e0;
}

/* Header */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 28px;
    font-weight: 700;
    color: #d1a179;
    letter-spacing: 1px;
}

.desktop-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-weight: 600;
    color: #333333;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d1a179;
}

.cta-button {
    display: inline-block;
    padding: 10px 24px;
    background-color: #d1a179;
    color: #ffffff;
    font-weight: 600;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #b88a62;
    transform: translateY(-2px);
}

.large-btn {
    padding: 15px 35px;
    font-size: 18px;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
    box-sizing: border-box;
}

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

.close-icon-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.close-icon-line {
    position: absolute;
    top: 14px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #333333;
    border-radius: 2px;
}

.close-icon-line.line-1 {
    transform: rotate(45deg);
}

.close-icon-line.line-2 {
    transform: rotate(-45deg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.cta-mobile {
    color: #d1a179;
}

/* Layout Utilities */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #222222;
    margin-bottom: 40px;
}

/* Hero Section */
.hero-section {
    background-color: #faf5f0;
    padding: 60px 20px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    color: #222222;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: #555555;
    margin-bottom: 30px;
}

.hero-image-wrapper {
    flex: 1;
}

.hero-img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* About Section */
.about-grid {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-image-wrapper {
    flex: 1;
}

.about-content {
    flex: 1;
}

.feature-list {
    margin-top: 20px;
}

.feature-item {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d1a179;
    font-weight: bold;
}

/* Why Us Section */
.why-us-section {
    background-color: #f7f9fa;
}

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

.feature-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.card-img {
    height: 250px;
    object-fit: cover;
    margin: 0 auto 20px auto;
}

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

.card-text {
    color: #666666;
}

/* Testimonials Section */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #eaeaea;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    color: #555555;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 700;
    color: #222222;
}

/* FAQ Section */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    margin-bottom: 15px;
    border-radius: 8px;
    padding: 20px;
}

.faq-question {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

.faq-answer {
    color: #666;
    margin-bottom: 0;
}

/* Return Policy Section */
.policy-section {
    background-color: #faf5f0;
}

/* Footer Element Customization */
.main-footer {
    background-color: #222222;
    color: #dddddd;
    padding: 60px 0 20px 0;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-text {
    font-size: 14px;
    margin-bottom: 10px;
    color: #bbbbbb;
}

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

.footer-link {
    font-size: 14px;
    color: #bbbbbb;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #d1a179;
}

.footer-ad-note {
    border-top: 1px solid #444444;
    padding-top: 20px;
    margin-bottom: 10px;
}

.footer-ad-text {
    font-size: 12px;
    color: #999999;
}

.footer-important-note {
    background-color: #111111;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.important-note-text {
    font-size: 11px;
    color: #888888;
    margin-bottom: 0;
    text-align: center;
}

.footer-copyright {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
}

.copyright-text {
    font-size: 14px;
    color: #777777;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 350px;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 25px;
    z-index: 3000;
    transform: translateY(150%);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cookie-text {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.accept-btn {
    background-color: #d1a179;
    color: #ffffff;
}

.accept-btn:hover {
    background-color: #b88a62;
}

.reject-btn {
    background-color: #eeeeee;
    color: #333333;
}

.reject-btn:hover {
    background-color: #dddddd;
}

/* Media Queries for Mobile Responsive */
@media (max-width: 992px) {
    .desktop-nav, .header-cta-wrapper {
        display: none;
    }
    
    .hamburger-menu {
        display: flex;
    }

    .hero-container, .about-grid {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .section-container {
        padding: 50px 20px;
    }
    .hero-title {
        font-size: 30px;
    }
}
