html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
img,
ul,
li,
nav,
header,
footer,
section,
button,
label,
article,
main,
aside,
figure,
figcaption {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    color: #e6c5aa;
    /* Rose Gold/Champagne accent */
}

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

.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #e6c5aa;
    letter-spacing: 4px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
        transform: scale(0.98);
    }

    50% {
        opacity: 1;
        transform: scale(1.02);
    }

    100% {
        opacity: 0.5;
        transform: scale(0.98);
    }
}

.fade-out {
    opacity: 0;
    pointer-events: none;
}

/* Ad Note Top */
.top-ad-note {
    background-color: #1a1a1a;
    color: #a0a0a0;
    font-size: 0.75rem;
    text-align: center;
    padding: 8px 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Header */
.main-header {
    background-color: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

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

.brand-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #e6c5aa;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-item {
    text-decoration: none;
    color: #f5f5f5;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-item:hover {
    color: #e6c5aa;
}

.cta-button {
    background-color: #e6c5aa;
    color: #0a0a0a;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.85rem;
    border-radius: 2px;
    transition: background-color 0.3s, transform 0.3s;
    display: inline-block;
}

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

.hamburger-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: #e6c5aa;
    transition: 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #111;
    z-index: 2000;
    transition: right 0.4s ease;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

.close-menu-btn {
    background: none;
    border: none;
    color: #e6c5aa;
    font-size: 2rem;
    align-self: flex-end;
    cursor: pointer;
    margin-bottom: 40px;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #aaa;
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-price {
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
}

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

.hero-img {
    width: 100%;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

/* About Us & Why Us */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 20px;
}

.about-img {
    width: 100%;
    border-radius: 4px;
}

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

.feature-card {
    background-color: #151515;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #222;
    border-radius: 4px;
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 2.5rem;
    color: #e6c5aa;
    margin-bottom: 20px;
}

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

.feature-desc {
    color: #aaa;
    font-size: 0.95rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background-color: #111;
    padding: 40px;
    border-left: 3px solid #e6c5aa;
    position: relative;
}

.testimonial-text {
    font-style: italic;
    color: #ddd;
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.testimonial-author {
    color: #e6c5aa;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

/* FAQs */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

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

.faq-question {
    font-size: 1.2rem;
    font-family: 'Playfair Display', serif;
    color: #e6c5aa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    color: #aaa;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

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

/* Modal (Return Policy) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #111;
    border: 1px solid #333;
    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 4px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #888;
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: #e6c5aa;
}

.modal-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    color: #e6c5aa;
}

.modal-body {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}

.modal-body p {
    margin-bottom: 15px;
}

.modal-list {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: square;
}

.modal-list li {
    margin-bottom: 8px;
}

/* Footer */
.main-footer {
    background-color: #050505;
    padding: 60px 20px 20px;
    border-top: 1px solid #1a1a1a;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: #fff;
}

.footer-text,
.footer-link {
    color: #888;
    margin-bottom: 10px;
    display: block;
    text-decoration: none;
    font-size: 0.95rem;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    border-top: 1px solid #1a1a1a;
    padding-top: 30px;
}

.footer-ad-note {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.5;
}

.copyright-text {
    font-size: 0.85rem;
    color: #555;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 400px;
    background-color: #151515;
    border: 1px solid #333;
    padding: 25px;
    z-index: 3000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-radius: 4px;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

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

.cookie-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #e6c5aa;
}

.cookie-text {
    font-size: 0.9rem;
    color: #ccc;
    line-height: 1.5;
}

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

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    border-radius: 2px;
    transition: 0.3s;
}

.cookie-accept {
    background-color: #e6c5aa;
    color: #000;
}

.cookie-accept:hover {
    background-color: #d4b59a;
}

.cookie-reject {
    background-color: transparent;
    color: #888;
    border: 1px solid #555;
}

.cookie-reject:hover {
    background-color: #222;
    color: #fff;
}

/* Responsive */
@media (max-width: 900px) {

    .nav-links,
    .desktop-cta {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        margin: 40px auto;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }
}