:root {
    --primary-color: #f59e0b;
    --primary-hover: #d97706;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-white: #f8fafc;
    --text-muted: #94a3b8;
    --accent-glow: rgba(245, 158, 11, 0.2);
    --glass-bg: rgba(15, 23, 42, 0.8);
    --border-color: #334155;
    --transition: all 0.3s ease;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

body.body-container {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Loader */
.loader-wrapper {
    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;
}

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

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border-color);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-text {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

/* Ad Disclaimer Top */
.top-ad-disclaimer {
    background: var(--bg-card);
    padding: 10px 15px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
    box-sizing: border-box;
    width: 100%;
}

.ad-text {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

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

.logo-link {
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.cta-button {
    background: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-block;
}

.cta-button:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--accent-glow);
}

/* Hamburger */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger-bar {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text-white);
    margin: 6px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100%;
    background: var(--bg-card);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 20px;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-sidebar.active {
    transform: translateX(0);
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: flex-end;
}

.close-sidebar {
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2.5rem;
    cursor: pointer;
}

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

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

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    display: none;
}

.sidebar-overlay.active {
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 100px 20px;
    background: radial-gradient(circle at top right, var(--accent-glow), transparent);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.secondary-button {
    background: transparent;
    color: var(--text-white);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.05);
}

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

/* Section Common */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    box-sizing: border-box;
    width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

/* Product Info */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.prod-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.thumb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 15px;
}

.thumb-img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.detail-subtitle {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.feature-item {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.feature-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Why Us */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.benefit-icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.benefit-text {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-slider {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: none;
}

.testimonial-card {
    min-width: 350px;
    background: var(--bg-card);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

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

.faq-item {
    background: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    border-top: 1px solid var(--border-color);
}

/* Footer */
.main-footer {
    background: #070b14;
    padding: 80px 20px 40px;
    border-top: 1px solid var(--border-color);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.footer-desc {
    color: var(--text-muted);
}

.footer-links-group {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 25px;
}

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

.footer-nav li {
    margin-bottom: 12px;
}

.footer-link,
.footer-btn-link {
    color: var(--text-muted);
    text-decoration: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.footer-link:hover,
.footer-btn-link:hover {
    color: var(--primary-color);
}

.footer-contact-item {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.footer-middle {
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-ad-note {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-disclaimer {
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.copyright {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* 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;
    padding: 20px;
}

.modal-content {
    background: var(--bg-card);
    width: 100%;
    max-width: 800px;
    max-height: 80vh;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 2rem;
    cursor: pointer;
}

.modal-body h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--bg-card);
    border-top: 2px solid var(--primary-color);
    padding: 20px;
    z-index: 4000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    box-sizing: border-box;
    width: 100%;
}

.cookie-text {
    font-size: 0.95rem;
    margin: 0;
}

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

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    border: none;
}

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

.cookie-btn.reject {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-white);
}

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

    .hero-container,
    .product-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-text-box {
        text-align: center;
        order: 2;
    }

    .hero-image-box {
        order: 1;
    }

    .hero-actions {
        justify-content: center;
    }

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

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

    .hamburger-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 60px 20px;
    }

    .hero-section {
        padding: 60px 20px;
    }

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

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .benefit-card {
        padding: 30px 20px;
    }

    .cookie-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 30px;
    }

    .footer-links-group {
        gap: 30px;
        flex-direction: column;
    }

    .modal-content {
        padding: 25px;
        width: 90%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .logo-text {
        font-size: 1.5rem;
    }

    .testimonial-card {
        min-width: 280px;
    }

    .ad-text {
        font-size: 0.75rem;
        padding: 0 10px;
    }
}