* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.body-theme {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

.hidden-body {
    overflow: hidden !important;
}

.serif-text {
    font-family: 'Outfit', sans-serif;
    color: #0f172a;
    font-weight: 700;
}

.base-link {
    text-decoration: none;
    color: inherit;
}

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

.base-ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

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

/* ==============================
    ADVERTISEMENT TOP BAR
============================== */
.top-advertisement-bar {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    color: #94a3b8;
    text-align: center;
    padding: 10px 15px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.top-ad-text {
    margin: 0;
    padding: 0;
    opacity: 0.8;
}

/* ==============================
    NAVIGATION
============================== */
.navbar {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-weight: 800;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #0f172a 0%, #ca8a04 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: 'Outfit', sans-serif;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link-item {
    color: #64748b;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #eab308;
    transition: width 0.3s ease;
}

.nav-link-item:hover {
    color: #0f172a;
}

.nav-link-item:hover::after {
    width: 100%;
}

@media (hover: none) {
    .nav-link-item:hover::after {
        width: 0;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(234, 179, 8, 0.4);
    color: #ffffff;
}

.btn-block {
    display: flex;
    width: 100%;
    margin-top: 15px;
    box-sizing: border-box;
}

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

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #111827;
    border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 2000;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    padding: 60px 30px;
    box-sizing: border-box;
}

.menu-active {
    right: 0;
}

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

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

.mobile-nav-link-item {
    text-decoration: none;
    font-size: 1.2rem;
    color: #111827;
    font-weight: 600;
}

/* ==============================
    BANNER
============================== */
.banner {
    background: #0f172a;
    color: #ffffff;
    padding: 12px 0;
    font-size: 0.9rem;
    border-bottom: 2px solid #eab308;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
}

.badge {
    background: #eab308;
    color: #0f172a;
    padding: 4px 14px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(234, 179, 8, 0.2);
}

.banner-link {
    text-decoration: none;
    font-weight: 700;
    color: #eab308;
    border-bottom: 1px dashed #eab308;
    transition: all 0.3s ease;
}

.banner-link:hover {
    opacity: 0.8;
}

/* ==============================
    MAIN CONTENT GRID
============================== */
.grid-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 50px;
    padding-top: 60px;
    padding-bottom: 80px;
    align-items: start;
}

.articles-area {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.card {
    background-color: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
}

.card-image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.article-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.card-hover-wrapper:hover .article-img {
    transform: scale(1.05);
}

.tag {
    position: absolute;
    top: 30px;
    left: 30px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    color: #eab308;
    padding: 8px 18px;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    z-index: 10;
    border: 1px solid rgba(234, 179, 8, 0.3);
}

.card-body {
    padding: 50px;
}

.meta {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 12px;
    font-weight: 500;
}

.text-accent {
    color: #4b5563;
    font-weight: 800;
    text-transform: uppercase;
}

.article-title {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 30px;
    color: #0f172a;
    margin-top: 0;
    letter-spacing: -0.01em;
}

.prose {
    color: #475569;
    font-size: 1.15rem;
    line-height: 1.8;
}

.highlight-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-left: 6px solid #eab308;
    padding: 40px;
    margin: 50px 0;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.highlight-box::after {
    content: '☀';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 10rem;
    opacity: 0.03;
    pointer-events: none;
}

.highlight-title {
    margin-bottom: 15px;
    font-size: 1.6rem;
    margin-top: 0;
    color: #0f172a;
}

.btn-dark {
    display: inline-block;
    background-color: #0f172a;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.2);
}

.btn-dark:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.3);
}


/* Sidebar */
.sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-sizing: border-box;
}

.widget-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.3);
}

.badge-hot {
    display: inline-block;
    background-color: #f59e0b;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 15px;
    letter-spacing: 0.05em;
}

.widget-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
    margin-top: 0;
    letter-spacing: -0.01em;
}

.product-img {
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.feature-list-item {
    font-size: 0.95rem;
    color: #64748b;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list-item::marker {
    color: #eab308;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.newsletter-input {
    padding: 12px;
    border: 1px solid #4b5563;
    border-radius: 6px;
    background-color: rgba(255,255,255,0.1);
    color: #ffffff;
    font-family: inherit;
    font-size: 0.95rem;
    box-sizing: border-box;
}

.newsletter-input::placeholder {
    color: #9ca3af;
}

.newsletter-input:focus {
    outline: none;
    border-color: #ffffff;
}

/* Sections Styling */
.page-section {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    margin-top: 40px;
    box-sizing: border-box;
}

.section-header {
    font-size: 2.25rem;
    margin-bottom: 40px;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 20px;
    margin-top: 0;
    color: #0f172a;
}

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

.feature-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-sizing: border-box;
    transition: transform 0.3s ease;
}

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

.feature-title-text {
    margin-bottom: 15px;
    font-size: 1.4rem;
    margin-top: 0;
    color: #0f172a;
}

.feature-text-desc {
    color: #4b5563;
    margin: 0;
}

.testimonials-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-item {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    font-style: italic;
    box-sizing: border-box;
}

.testimonial-text-content {
    margin: 0;
}

.testimonial-author {
    margin-top: 10px;
    font-weight: 700;
    font-style: normal;
    margin-bottom: 0;
}

.faq-list-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #f9fafb;
    padding: 15px 20px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    box-sizing: border-box;
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 8px;
    font-weight: 700;
    color: #111827;
    margin-top: 0;
}

.faq-answer {
    color: #4b5563;
    font-size: 0.95rem;
    margin: 0;
}

.return-policy-p {
    margin: 0;
}

/* ==============================
    FOOTER
============================== */
.footer {
    background-color: #ffffff;
    padding: 60px 0;
    background-color: #0f172a;
    padding: 80px 0;
    margin-top: 80px;
    color: #94a3b8;
}

.footer-clean-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    background: linear-gradient(135deg, #ffffff 0%, #eab308 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0px;
}

.footer-copyright {
    color: #64748b;
    font-size: 0.85rem;
}

.footer-links-inline {
    display: flex;
    gap: 15px;
    margin-top: 5px;
}

.footer-link-item {
    color: #94a3b8;
    font-size: 0.85rem;
    transition: color 0.3s;
    text-decoration: none;
    text-transform: capitalize;
    font-weight: 600;
}

.footer-link-item:hover {
    color: #eab308;
}

.footer-right {
    max-width: 500px;
}

.footer-disclosure-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.6;
    box-sizing: border-box;
}

.footer-strong {
    color: #4b5563;
    font-weight: bold;
}

/* Specs Table */
.specs-table-container {
    margin: 30px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.specs-table {
    width: 100%;
    min-width: 300px;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.specs-table tr {
    border-bottom: 1px solid #e5e7eb;
}

.specs-table tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 12px 0;
    color: #4b5563;
}

.specs-table td:first-child {
    width: 40%;
    color: #111827;
}

/* ==============================
    MODALS & COOKIES
============================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(17, 24, 39, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6b7280;
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 9998;
    max-width: 600px;
    width: 90%;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    box-sizing: border-box;
}

.cookie-text {
    flex: 1;
    font-size: 0.875rem;
}

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

.cookie-btn {
    background-color: #374151;
    color: #ffffff;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #ffffff;
    color: #111827;
}

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

.cookie-reject:hover {
    background-color: #4b5563;
}

/* List resets */
.custom-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    margin-top: 15px;
}
.custom-list-item {
    margin-bottom: 5px;
}

/* Utilities */
.mb-15 { margin-bottom: 15px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0px; }

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease;
}
.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #111827;
    margin-bottom: 20px;
    margin-top: 0;
}
.loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(17, 24, 39, 0.3);
    border-radius: 50%;
    border-top-color: #111827;
    animation: spin 1s ease-in-out infinite;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==============================
    MEDIA QUERIES
============================== */

/* Large Tablets & Small Desktops (Laptops) */
@media (max-width: 1024px) {
    .container {
        max-width: 95%;
    }

    .grid-layout {
        gap: 30px;
        grid-template-columns: 1fr 300px;
    }

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

    .card-body {
        padding: 40px;
    }
}

/* Tablets (Portrait) */
@media (max-width: 991px) {
    .grid-layout {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }

    .articles-area {
        order: 1;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-clean-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }

    .footer-right {
        max-width: 100%;
    }
}

/* Mobiles (Lrg) */
@media (max-width: 768px) {
    .nav-links, .desktop-only {
        display: none;
    }
    
    .hamburger-btn {
        display: flex;
    }

    .article-title {
        font-size: 1.8rem;
    }

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

    .highlight-box {
        padding: 25px;
        margin: 30px 0;
    }

    .page-section {
        padding: 30px 20px;
    }

    .section-header {
        font-size: 1.75rem;
    }

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

    .modal-content {
        width: 95%;
        padding: 30px 20px;
    }

    .cookie-banner {
        width: calc(100% - 40px);
        flex-direction: column;
        text-align: center;
        bottom: 10px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
    }
}

/* Small Mobiles */
@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }

    .banner-text {
        font-size: 0.85rem;
    }

    .top-ad-text {
        font-size: 0.6rem;
    }

    .article-title {
        font-size: 1.5rem;
    }

    .specs-table td {
        font-size: 0.85rem;
        padding: 10px 0;
    }

    .specs-table td:first-child {
        width: 50%;
    }

    .footer-links-inline {
        flex-direction: column;
        gap: 10px;
    }

    .mobile-menu-overlay {
        width: 100%;
    }
}

/* Even smaller mobiles */
@media (max-width: 380px) {
    .article-title {
        font-size: 1.4rem;
    }
    
    .logo {
        font-size: 1.35rem;
    }
    
    .btn-primary {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    .page-section {
        padding: 25px 15px;
    }
    
    .card-body {
        padding: 25px 15px;
    }

    .banner-text {
        font-size: 0.8rem;
    }
}
