.html-root {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

.body-reset {
    margin: 0;
    padding: 0;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    -webkit-text-size-adjust: 100%;
}

.main-container {
    width: 100%;
}

/* Typography Classes */
.heading-h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.heading-h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.heading-h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.text-p {
    margin-bottom: 1rem;
    font-size: 1.125rem;
    color: #4b5563;
}

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

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

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

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

/* Colors */
.text-primary {
    color: #FFB800;
}

.bg-primary {
    background-color: #FFB800;
}

.text-white {
    color: #ffffff;
}

.bg-dark {
    background-color: #1A2B3C;
}

/* Buttons */
.btn-cta {
    display: inline-block;
    padding: 14px 32px;
    background-color: #FFB800;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 184, 0, 0.3);
}

.btn-cta:hover {
    background-color: #e6a600;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 184, 0, 0.4);
}

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

.loader-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFB800;
    letter-spacing: 2px;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

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

    100% {
        transform: scale(1);
        opacity: 0.8;
    }
}

/* Top Advertisement Banner */
.top-ad-banner {
    background: #f3f4f6;
    padding: 12px 20px;
    text-align: center;
    font-size: 0.875rem;
    color: #4b5563;
    border-bottom: 1px solid #e5e7eb;
}

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

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

.logo-link {
    font-size: 1.5rem;
    font-weight: 800;
    text-decoration: none;
    color: #1A2B3C;
}

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

.nav-item {
    margin-left: 30px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Mobile Nav Toggler */
.nav-toggler {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: #ffffff;
    z-index: 1100;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px;
}

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

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero-sec {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-price {
    font-size: 1.75rem;
    font-weight: 800;
    color: #d84315;
    margin-bottom: 20px;
    display: block;
}

.hero-content {
    max-width: 600px;
}

.hero-img-container {
    text-align: right;
}

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

/* Product Section */
.product-sec {
    background: #ffffff;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.product-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

/* Features Cards */
.feature-card {
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
    border: 1px solid #f3f4f6;
}

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

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

/* FAQ Accordion */
.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    background: #f9fafb;
    overflow: hidden;
}

.faq-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
}

.faq-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-body-active {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 600px;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    padding: 25px;
    z-index: 2000;
    display: none;
    transform: translateY(100px);
    transition: transform 0.5s ease-out;
}

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

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

.btn-secondary {
    padding: 10px 24px;
    background: #f3f4f6;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
}

/* Footer Styles */
.footer-main {
    background: #1A2B3C;
    color: #ffffff;
    padding: 80px 20px 40px 20px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

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

.modal-content {
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    position: relative;
    color: #333;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
}

.modal-active {
    display: flex;
}

.footer-heading {
    color: #FFB800;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

.footer-link {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-ad-note {
    text-align: center;
    border-top: 1px solid #334155;
    padding-top: 40px;
    font-size: 0.9rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
}

.footer-copy {
    text-align: center;
    margin-top: 40px;
    color: #64748b;
    font-size: 0.85rem;
}

@media (max-width: 991px) {

    .grid-2,
    .grid-3,
    .product-gallery {
        grid-template-columns: 1fr;
    }

    .heading-h1 {
        font-size: 2.25rem;
    }

    .heading-h2 {
        font-size: 1.75rem;
    }

    .hero-img-container {
        text-align: center;
        margin-top: 50px;
    }

    .nav-links-list {
        display: none;
    }

    .nav-toggler {
        display: block;
    }

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

/* Specific resets for classes since * is forbidden */
.list-no-bullet {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.img-fluid {
    max-width: 100%;
    height: auto;
    display: block;
}