/* styles.css */

.html-root {
    scroll-behavior: smooth;
}

.body-root {
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    color: #1E293B;
    line-height: 1.6;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 75%;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid #E2E8F0;
    border-top-color: #FBBF24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 18px;
    color: #FBBF24;
    font-weight: 500;
}

.dot-animation::after {
    content: '';
    animation: dots 1.5s infinite;
}

@keyframes dots {

    0%,
    20% {
        content: '.';
    }

    40%,
    60% {
        content: '..';
    }

    80%,
    100% {
        content: '...';
    }
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 30px;
    left: 30px;
    max-width: 350px;
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    padding: 25px;
}

.cookie-icon {
    font-size: 32px;
    color: #FBBF24;
    margin-bottom: 15px;
}

.cookie-heading {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1E293B;
}

.cookie-text {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #FBBF24;
    color: #1E293B;
}

.cookie-btn.accept:hover {
    background-color: #F59E0B;
}

.cookie-btn.reject {
    background-color: #E2E8F0;
    color: #475569;
}

.cookie-btn.reject:hover {
    background-color: #CBD5E1;
}

/* Advertisement Banner */
.ad-banner {
    background-color: #FEF9E7;
    border-bottom: 1px solid #FDE68A;
    padding: 8px 0;
    text-align: center;
}

.ad-text {
    font-size: 12px;
    color: #92400E;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.ad-icon {
    color: #FBBF24;
}

/* Header */
.header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.desktop-nav-link {
    font-size: 16px;
    font-weight: 500;
    color: #1E293B;
    text-decoration: none;
    transition: color 0.3s ease;
}

.desktop-nav-link:hover {
    color: #FBBF24;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1E293B;
    cursor: pointer;
    padding: 10px;
    transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
    color: #FBBF24;
}

.mobile-nav-overlay {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: #FFFFFF;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.3s ease;
    overflow-y: auto;
}

.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-nav-content {
    padding: 30px 20px;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 18px;
    font-weight: 500;
    color: #1E293B;
    text-decoration: none;
    padding-bottom: 10px;
    border-bottom: 1px solid #E2E8F0;
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #FBBF24;
}

.mobile-cta-btn {
    display: inline-block;
    background-color: #FBBF24;
    color: #1E293B;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    margin-top: 10px;
    transition: background-color 0.3s ease;
}

.mobile-cta-btn:hover {
    background-color: #F59E0B;
}

.logo {
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #1E293B;
}

.logo-highlight {
    color: #FBBF24;
    font-weight: 700;
}

.cta-btn {
    background-color: #FBBF24;
    color: #1E293B;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.cta-btn:hover {
    background-color: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .cta-btn {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #FEF9E7 100%);
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    animation: fadeInLeft 1s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-block;
    background-color: rgba(251, 191, 36, 0.1);
    color: #FBBF24;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1E293B;
    margin-top: 0;
}

.hero-title .highlight {
    color: #FBBF24;
}

.hero-description {
    font-size: 18px;
    color: #64748B;
    margin-bottom: 20px;
    line-height: 1.6;
    margin-top: 0;
}

.hero-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #475569;
}

.hero-feature-icon {
    color: #FBBF24;
    font-size: 20px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #FBBF24;
    color: #1E293B;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.hero-cta:hover {
    background-color: #F59E0B;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background-color: #FFFFFF;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-badge-icon {
    font-size: 24px;
    color: #FBBF24;
}

.trust-badge-text {
    font-weight: 600;
    color: #1E293B;
}

@media (max-width: 768px) {
    .hero-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .trust-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 15px;
    margin-top: 0;
}

.section-title .highlight {
    color: #FBBF24;
}

.section-subtitle {
    font-size: 18px;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-desc {
    margin-bottom: 20px;
    color: #64748B;
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #FBBF24;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #64748B;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.value-card {
    background-color: #FEF9E7;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.value-icon {
    font-size: 32px;
    color: #FBBF24;
    margin-bottom: 15px;
}

.value-heading {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1E293B;
    margin-top: 0;
}

.value-text {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background-color: #FEF9E7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.benefit-icon-container {
    width: 70px;
    height: 70px;
    background-color: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-icon {
    font-size: 30px;
    color: #FBBF24;
}

.benefit-heading {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1E293B;
    margin-top: 0;
}

.benefit-text {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background-color: #FEF9E7;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.feature-icon-container {
    width: 70px;
    height: 70px;
    background-color: rgba(251, 191, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon {
    font-size: 30px;
    color: #FBBF24;
}

.feature-heading {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1E293B;
    margin-top: 0;
}

.feature-text {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Specs Section */
.specs {
    padding: 60px 0;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
}

.specs-card {
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.specs-title {
    font-size: 32px;
    text-align: center;
    margin-bottom: 30px;
    color: #1E293B;
    margin-top: 0;
}

.specs-title .highlight {
    color: #FBBF24;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.spec-item {
    display: flex;
    flex-direction: column;
    padding: 15px;
    border-bottom: 1px solid #E2E8F0;
}

.spec-label {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 5px;
    font-weight: 500;
}

.spec-value {
    font-size: 16px;
    color: #1E293B;
    font-weight: 600;
}

@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background-color: #FEF9E7;
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
}

.testimonial-rating {
    margin-bottom: 15px;
    color: #FFD700;
}

.rating-icon {
    margin-right: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
    margin-top: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar-icon {
    font-size: 40px;
    color: #64748B;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 5px;
    margin-top: 0;
}

.author-location {
    font-size: 14px;
    color: #64748B;
    margin: 0;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background-color: #FEF9E7;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: #FEF9E7;
}

.faq-heading {
    font-size: 16px;
    font-weight: 600;
    color: #1E293B;
    margin: 0;
}

.faq-icon {
    color: #FBBF24;
    transition: all 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px;
}

.faq-text {
    color: #64748B;
    line-height: 1.6;
    font-size: 14px;
    margin: 0;
}

/* Return Policy Section */
.return-policy {
    padding: 60px 0;
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
    color: #1E293B;
}

.policy-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.policy-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.policy-title {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 0;
}

.policy-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
    margin-top: 0;
}

.policy-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-icon {
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #1E293B;
    color: #FFFFFF;
    padding: 60px 0 20px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-heading {
    font-size: 18px;
    margin-bottom: 20px;
    color: #FFFFFF;
    margin-top: 0;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list-item {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-list-icon {
    color: #FBBF24;
    width: 20px;
}

.footer-link {
    color: #E2E8F0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #FBBF24;
}

.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.disclaimer-text {
    font-size: 13px;
    line-height: 1.6;
    color: #BDC3C7;
    margin: 0;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #95A5A6;
}

.copyright-text {
    margin: 0;
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

/* Modal Styles */
.modal-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-container.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: #FFFFFF;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    position: relative;
    padding: 40px;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-container.active .modal {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #64748B;
    transition: all 0.3s ease;
}

.modal-close:hover {
    color: #1E293B;
}

.modal-title {
    font-size: 24px;
    color: #FBBF24;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #FBBF24;
    margin-top: 0;
}

.modal-content {
    color: #475569;
    line-height: 1.7;
}

.modal-heading {
    color: #1E293B;
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 10px;
}

.modal-list {
    margin-left: 20px;
    margin-bottom: 15px;
}

.modal-text {
    margin: 0 0 10px 0;
}

/* Utility Classes */
.highlight {
    color: #FBBF24;
}