        /* ===== RESET & VARIABEL ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }

        body {
            background-color: #fdf8f4;
            color: #2d3436;
            line-height: 1.6;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* ===== HEADER STICKY ===== */
        .site-header {
            background-color: #ffffff;
            border-bottom: 1px solid #f0e6da;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 15px rgba(240, 147, 43, 0.08);
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            flex-shrink: 0;
        }

        .logo-section img {
            width: auto;
            height: 40px;
            max-width: 240px;
            object-fit: contain;
            display: block;
        }

        .search-wrapper {
            flex: 1;
            max-width: 650px;
            margin: 0 auto;
            position: relative;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: #ffffff;
            border-radius: 30px;
            padding: 5px;
            border: 2px solid #fad390;
            transition: all 0.3s ease;
            height: 40px;
        }

        .search-box:hover,
        .search-box:focus-within {
            box-shadow: 0 2px 15px rgba(240, 147, 43, 0.25);
            border-color: #e17055;
            background: white;
        }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 12px 15px;
            font-size: 0.95rem;
            background: transparent;
            color: #2d3436;
            border-radius: 30px 0 0 30px;
            height: 100%;
        }

        .search-box button {
            background: linear-gradient(135deg, #f39c12, #e17055);
            border: none;
            border-radius: 20px;
            padding: 0 15px;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            height: 100%;
        }

        .search-box button:hover {
            background: linear-gradient(135deg, #e17055, #d63031);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(214, 48, 49, 0.3);
        }

        .search-box button svg {
            width: 18px;
            height: 18px;
            stroke: white;
        }

        .search-button-text {
            display: inline-block;
        }

        .share-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #6c5ce7, #a29bfe);
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            justify-content: center;
            color: white;
            font-weight: 600;
        }

        .share-button:hover {
            background: linear-gradient(135deg, #5f27cd, #6c5ce7);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
        }

        .share-button svg {
            width: 16px;
            height: 16px;
            stroke: white;
        }

        .share-button span {
            font-weight: 500;
            font-size: 0.9rem;
            color: white;
        }

        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: 1px solid #f0e6da;
            border-radius: 8px;
            padding: 0.5rem 1rem;
            cursor: pointer;
            color: #e17055;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-toggle:hover {
            background: #fff5f0;
        }

        .mobile-menu-toggle svg {
            width: 20px;
            height: 20px;
        }

        .nav-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 998;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .nav-overlay.active {
            display: block;
            opacity: 1;
        }

        /* ===== NAVIGATION STICKY ===== */
        .nav-bar {
            background: linear-gradient(135deg, #6c5ce7 0%, #5f27cd 100%);
            border-bottom: 2px solid #f39c12;
            position: sticky;
            top: 60px;
            z-index: 99;
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 0.1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .nav-item {
            position: static;
        }

        .menu-main-link {
            display: inline-flex;
            align-items: center;
            gap: 0.3rem;
            padding: 1rem 1.1rem;
            text-decoration: none;
            color: #fff;
            font-weight: 600;
            font-size: 0.88rem;
            border-bottom: 3px solid transparent;
            transition: all 0.2s;
            white-space: nowrap;
            background: none;
            cursor: pointer;
            border-radius: 8px 8px 0 0;
        }

        .menu-main-link:hover {
            border-bottom-color: #f39c12;
            color: #ffffff;
            background: rgba(243, 156, 18, 0.15);
        }

        .dropdown-arrow-btn {
            display: none;
            background: transparent;
            border: none;
            padding: 0.8rem 1rem;
            cursor: pointer;
            color: #fff;
            transition: all 0.2s;
            border-radius: 8px;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .dropdown-arrow-btn:hover {
            background: rgba(243, 156, 18, 0.2);
        }

        .dropdown-arrow-btn svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s;
            stroke: currentColor;
        }

        .nav-item.active .dropdown-arrow-btn svg {
            transform: rotate(180deg);
        }

        .chevron-down-svg {
            margin-left: 0.3rem;
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
            stroke: #fff;
        }

        .mobile-nav-header {
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #f0e6da;
            background: white;
        }

        .mobile-nav-header h3 {
            font-size: 1.1rem;
            color: #2d3436;
        }

        .mobile-close-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            color: #6b5b4a;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-close-btn:hover {
            background: #fdf8f4;
            color: #e17055;
        }

        .mobile-close-btn svg {
            width: 26px;
            height: 26px;
        }

        /* ===== MEGA DROPDOWN ===== */
        .mega-menu {
            display: none;
            position: absolute;
            left: 0;
            width: 100%;
            background-color: white;
            border-top: 2px solid #fad390;
            border-bottom: 2px solid #f39c12;
            box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.12);
            padding: 2rem 0;
            z-index: 1000;
        }

        .nav-item:hover .mega-menu {
            display: block;
        }

        .mega-menu-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 2rem;
        }

        .mega-menu-container.mega-menu-grid-4 {
            grid-template-columns: repeat(4, 1fr);
        }

        .mega-menu-container.mega-menu-grid-3 {
            grid-template-columns: repeat(3, 1fr);
        }

        .mega-menu-container.mega-menu-grid-2 {
            grid-template-columns: repeat(2, 1fr);
        }

        .menu-col h4 {
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #e17055;
            margin-bottom: 1rem;
            border-bottom: 2px solid #fad390;
            padding-bottom: 0.5rem;
        }

        .menu-col ul {
            list-style: none;
        }

        .menu-col li {
            margin-bottom: 0.6rem;
        }

        .menu-col a {
            text-decoration: none;
            color: #2d3436;
            font-size: 0.9rem;
            display: block;
            transition: all 0.2s;
            font-weight: 500;
        }

        .menu-col a:hover {
            color: #e17055;
            padding-left: 5px;
            font-weight: 600;
        }

        /* ===== MAIN CONTENT ===== */
        .content-wrapper {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
            padding: 3rem 2rem;
            border-radius: 24px;
            text-align: center;
            margin-bottom: 2rem;
            min-height: 250px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-size: cover;
            background-position: center;
        }

        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
            color: white;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
            color: white;
        }

        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #f39c12, #e17055);
            color: white;
            text-decoration: none;
            border-radius: 40px;
            font-weight: 700;
            transition: all 0.3s;
            border: none;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
        }

        .btn:hover {
            background: linear-gradient(135deg, #e17055, #d63031);
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(214, 48, 49, 0.5);
        }

        .info-box {
            background: linear-gradient(135deg, #fff5f0, #ffeaa7);
            border-left: 4px solid #e17055;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 12px 12px 0;
            color: #2d3436;
        }

        .section-title {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #5f27cd;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #f39c12, #e17055);
            border-radius: 2px;
        }

        /* ===== CATEGORY GRID ===== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.8rem;
            margin: 2rem 0;
        }

        .category-card {
            background: white;
            padding: 2rem 1rem;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 2px solid #fad390;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .category-card:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 12px 30px rgba(240, 147, 43, 0.2);
            border-color: #e17055;
        }

        .category-icon {
            width: 96px;
            height: 96px;
            object-fit: contain;
            margin-bottom: 1.2rem;
            display: block;
            transition: transform 0.3s ease;
        }

        .category-card:hover .category-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .category-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #5f27cd;
            font-weight: 700;
        }

        .category-card p {
            color: #636e72;
            font-size: 0.9rem;
            margin: 0;
        }

        /* ===== ARTICLE GRID ===== */
        .article-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin: 2rem 0;
        }

        .article-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            border: 2px solid #fad390;
        }

        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(240, 147, 43, 0.2);
            border-color: #e17055;
        }

        .article-image {
            height: 200px;
            background: linear-gradient(135deg, #6c5ce7, #f39c12);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

        .article-image-webp {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }

        .article-card:hover .article-image-webp {
            transform: scale(1.05);
        }

        .article-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.35) 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .article-card:hover .article-image::after {
            opacity: 1;
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-content h3 {
            font-size: 1.2rem;
            margin-bottom: 0.75rem;
            color: #5f27cd;
            line-height: 1.4;
        }

        .article-content p {
            color: #636e72;
            margin-bottom: 1.2rem;
            font-size: 0.9rem;
            line-height: 1.6;
        }

        .read-more {
            display: inline-block;
            padding: 0.6rem 1.5rem;
            background: linear-gradient(135deg, #f39c12, #e17055);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s;
        }

        .read-more:hover {
            background: linear-gradient(135deg, #e17055, #d63031);
            transform: translateX(5px);
        }

        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #5f27cd;
            color: white;
            padding: 12px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s;
            border-left: 4px solid #f39c12;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 2px solid #fad390;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
            z-index: 1000;
            max-height: 400px;
            overflow-y: auto;
            margin-top: 5px;
        }

        .search-result-item {
            display: block;
            padding: 15px;
            text-decoration: none;
            color: #2d3436;
            border-bottom: 1px solid #fdf8f4;
            transition: all 0.2s;
        }

        .search-result-item:hover {
            background-color: #fdf8f4;
        }

        .search-result-item.selected {
            background-color: #ffeaa7;
            border-left: 3px solid #e17055;
        }

        .search-result-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: #2d3436;
        }

        .search-result-content p {
            font-size: 0.85rem;
            color: #636e72;
            margin-bottom: 3px;
        }

        .search-result-url {
            color: #e17055;
            font-size: 0.8rem;
        }

        .search-highlight {
            background-color: #fdf8f4;
            padding: 0 2px;
            border-radius: 2px;
            font-weight: 600;
        }

        .search-loading {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            padding: 15px;
            text-align: center;
            border: 2px solid #fad390;
            border-radius: 0 0 12px 12px;
            color: #636e72;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .search-loading svg {
            animation: spin 1s linear infinite;
        }

        .no-results {
            padding: 20px;
            text-align: center;
            color: #636e72;
        }

        /* ===== BACK TO TOP ===== */
        .back-to-top {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #f39c12, #e17055);
            color: white;
            border: none;
            border-radius: 50%;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 15px rgba(243, 156, 18, 0.5);
            opacity: 0;
            transform: scale(0.8);
        }

        .back-to-top:hover {
            background: linear-gradient(135deg, #e17055, #d63031);
            transform: translateY(-3px) scale(1);
            box-shadow: 0 6px 20px rgba(214, 48, 49, 0.6);
        }

        .back-to-top.show {
            display: flex;
            opacity: 1;
            transform: scale(1);
        }

        .back-to-top svg {
            width: 24px;
            height: 24px;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #2d3436;
            color: white;
            padding: 3rem 0 1rem;
            margin-top: 4rem;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
        }

        .footer-section h4 {
            font-size: 1rem;
            margin-bottom: 1rem;
            border-bottom: 2px solid #f39c12;
            padding-bottom: 0.5rem;
            color: #fad390;
        }

        .footer-section a {
            color: #dfe6e9;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #f39c12;
        }

        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #636e72;
            color: #b2bec3;
            font-size: 0.8rem;
        }

        /* ===== PRODUCTS SECTION CSS ===== */
        .products-container {
            max-width: 1280px;
            margin: 3rem auto;
            padding: 0 1rem;
        }

        .products-section {
            background: white;
            border-radius: 16px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(240, 147, 43, 0.06);
            border: 2px solid #fad390;
        }

        .products-section .section-title {
            font-size: 1.8rem;
            margin: 0 0 2rem 0;
            color: #5f27cd;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .products-section .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #f39c12, #e17055);
            border-radius: 2px;
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: #636e72;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 3px solid #fad390;
            border-top-color: #e17055;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .product-card {
            border: 2px solid #fad390;
            border-radius: 16px;
            padding: 0;
            background-color: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(240, 147, 43, 0.2);
            border-color: #e17055;
        }

        .product-image {
            width: 100%;
            height: 220px;
            object-fit: contain;
            background: linear-gradient(135deg, #fdf8f4 0%, #ffffff 100%);
            border-bottom: 2px solid #fad390;
            padding: 20px;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image {
            transform: scale(1.02);
        }

        .product-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .product-title {
            font-size: 1rem;
            color: #2d3436;
            margin-bottom: 12px;
            line-height: 1.4;
            font-weight: 600;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            min-height: 67.2px;
        }

        .product-price {
            font-size: 1.25rem;
            color: #e17055;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .price-update {
            font-size: 0.75rem;
            color: #636e72;
            margin-bottom: 16px;
            line-height: 1.3;
            font-style: italic;
        }

        .product-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #f39c12, #e17055);
            color: white;
            border: none;
            padding: 12px 20px;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.2s ease;
            margin-top: auto;
            cursor: pointer;
            text-align: center;
            min-height: 44px;
        }

        .product-button:hover {
            background: linear-gradient(135deg, #e17055, #d63031);
            transform: translateY(-1px);
            box-shadow: 0 4px 15px rgba(214, 48, 49, 0.3);
            color: white;
            text-decoration: none;
        }

        .product-button:active {
            transform: translateY(0);
        }

        .price-timestamp {
            font-size: 0.65rem !important;
            color: #636e72 !important;
            margin: 0 0 0.8rem 0 !important;
            background: #fdf8f4 !important;
            padding: 6px 10px !important;
            border-radius: 6px !important;
            border-left: 3px solid #e17055 !important;
            line-height: 1.3 !important;
        }

        .product-btn {
            background: linear-gradient(135deg, #f39c12, #e17055);
            color: white;
            text-decoration: none;
            padding: 0.7rem 0.8rem;
            border-radius: 8px;
            font-weight: 600;
            font-size: 0.85rem;
            text-align: center;
            transition: all 0.3s ease;
            margin-top: auto;
            display: inline-block;
            width: 100%;
            letter-spacing: 0.3px;
        }

        .product-btn:hover {
            background: linear-gradient(135deg, #e17055, #d63031);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(214, 48, 49, 0.3);
        }

        /* ===== DISCLAIMER STYLES ===== */
        .disclaimer-global {
            background-color: #fdf8f4;
            border-left: 4px solid #e17055;
            padding: 1.25rem;
            margin: 2rem 0;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .disclaimer-title {
            color: #e17055;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 0.75rem;
            font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }

        .disclaimer-global p {
            color: #636e72;
            font-size: 0.85rem;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }

        .disclaimer-global a {
            color: #e17055;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .disclaimer-global a:hover {
            color: #d63031;
            text-decoration: underline;
        }

        .affiliate-disclosure-notice {
            margin: 13px 0;
            background-color: #fff5f0;
            padding: 12px;
            border-radius: 4px;
            border-left: 4px solid #e17055;
        }

        .affiliate-disclosure-notice p {
            margin: 0;
            font-size: 12px;
            color: #636e72;
        }

        .affiliate-disclosure-notice a {
            color: #e17055;
            text-decoration: underline;
        }

        /* ===== COOKIE CONSENT ===== */
        .cookie-consent {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #5f27cd 0%, #341f97 100%);
            color: white;
            padding: 1rem;
            z-index: 1001;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.25);
        }

        .cookie-consent.show {
            transform: translateY(0);
        }

        .cookie-content {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .cookie-text {
            flex: 1;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .cookie-text a {
            color: #f39c12;
            text-decoration: none;
        }

        .cookie-text a:hover {
            text-decoration: underline;
            color: #ffeaa7;
        }

        .cookie-buttons {
            display: flex;
            gap: 0.8rem;
            flex-wrap: wrap;
        }

        .cookie-btn {
            padding: 0.6rem 1.2rem;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            font-weight: 600;
            transition: all 0.3s;
        }

        .cookie-btn-accept {
            background: linear-gradient(135deg, #f39c12, #e17055);
            color: white;
        }

        .cookie-btn-accept:hover {
            background: linear-gradient(135deg, #e17055, #d63031);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(240, 147, 43, 0.4);
        }

        .cookie-btn-decline {
            background: #636e72;
            color: white;
        }

        .cookie-btn-decline:hover {
            background: #b2bec3;
            transform: translateY(-2px);
        }

        /* ===== ADSENSE CONTAINER ===== */
        .adsense-container {
            background-color: #fdf8f4;
            border: 1px dashed #f39c12;
            padding: 20px;
            text-align: center;
            margin: 40px 0;
            border-radius: 16px;
            max-width: 1250px;
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== RESPONSIVE ===== */
        @media (min-width: 769px) and (max-width: 1024px) {
            .menu-main-link {
                padding: 1rem 0.8rem;
                font-size: 0.9rem;
            }

            .dropdown-arrow-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
            }

            .nav-item {
                display: flex;
                align-items: center;
                justify-content: space-between;
                flex-wrap: wrap;
            }

            .nav-item:hover .mega-menu {
                display: none;
            }

            .nav-item.active .mega-menu {
                display: block;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                z-index: 1000;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
            }

            .mega-menu-container {
                grid-template-columns: repeat(2, 1fr) !important;
            }

            .nav-bar {
                top: 58px;
            }

            .category-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 1.5rem;
            }

            .category-icon {
                width: 80px;
                height: 80px;
            }

            .article-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                gap: 1rem;
            }

            .logo-section {
                width: 100%;
                justify-content: space-between;
            }

            .search-wrapper {
                order: 3;
                width: 100%;
                max-width: none;
                margin: 0;
            }

            .share-button {
                min-width: auto;
                padding: 0.5rem 1rem;
            }

            .share-button span {
                display: none;
            }

            .search-button-text {
                display: none;
            }

            .search-box button {
                padding: 0 12px;
            }

            .mobile-menu-toggle {
                display: block;
            }

            .nav-bar {
                position: fixed;
                top: 0;
                right: -100%;
                width: 85%;
                max-width: 400px;
                height: 100vh;
                background: white;
                z-index: 999;
                border-left: 2px solid #fad390;
                transition: right 0.3s ease;
                overflow-y: auto;
                top: 0 !important;
            }

            .nav-bar.active {
                right: 0;
            }

            .nav-container {
                flex-direction: column;
                padding: 0;
            }

            .mobile-nav-header {
                display: flex;
                width: 100%;
            }

            .nav-menu {
                flex-direction: column;
                width: 100%;
                margin: 0;
                gap: 0;
            }

            .nav-item {
                display: flex;
                flex-wrap: wrap;
                align-items: center;
                justify-content: space-between;
                width: 100%;
            }

            .menu-main-link {
                display: inline-flex !important;
                align-items: center;
                justify-content: space-between;
                flex: 1;
                padding: 1rem 1.5rem;
                border-bottom: 1px solid #fdf8f4;
                font-size: 1rem;
                color: #5f27cd;
                background: white;
                text-decoration: none;
            }

            .menu-main-link:hover {
                background: #fdf8f4;
                color: #5f27cd;
                border-bottom-color: #fdf8f4;
            }

            .dropdown-arrow-btn {
                display: flex !important;
                align-items: center;
                justify-content: center;
                background: white;
                color: #5f27cd;
                padding: 1rem 1.2rem;
                border-left: 1px solid #fdf8f4;
                border-radius: 0;
                margin: 0;
            }

            .dropdown-arrow-btn svg {
                stroke: #5f27cd;
                width: 20px;
                height: 20px;
            }

            .chevron-down-svg {
                margin-left: 0 !important;
                flex-shrink: 0 !important;
                stroke: #5f27cd;
            }

            .mega-menu {
                position: static;
                box-shadow: none;
                border: none;
                padding: 0;
                background: #fdf8f4;
                display: none;
                width: 100%;
            }

            .nav-item:hover .mega-menu {
                display: none;
            }

            .nav-item.active .mega-menu {
                display: block;
            }

            .mega-menu-container {
                grid-template-columns: 1fr !important;
                gap: 1rem;
                padding: 1rem 1.5rem;
            }

            .hero {
                padding: 2rem 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .btn {
                padding: 0.6rem 1.5rem;
                font-size: 0.9rem;
            }

            .category-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .category-card {
                padding: 1.5rem 0.8rem;
                border-radius: 16px;
            }

            .category-icon {
                width: 64px;
                height: 64px;
                margin-bottom: 0.8rem;
            }

            .category-card h3 {
                font-size: 1rem;
            }

            .category-card p {
                font-size: 0.8rem;
            }

            .article-grid {
                grid-template-columns: 1fr;
            }

            .article-image {
                height: 180px;
            }

            .logo-section img {
                height: 32px;
                max-width: 190px;
            }

            .cookie-content {
                flex-direction: column;
                text-align: center;
            }

            .cookie-buttons {
                justify-content: center;
            }

            .products-section {
                padding: 1.5rem;
            }
            .products-section .section-title {
                font-size: 1.5rem;
                margin-bottom: 1.5rem;
            }
            .product-btn {
                padding: 0.6rem 0.8rem;
                font-size: 0.8rem;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }

            .product-image {
                height: 180px;
                padding: 15px;
            }

            .product-content {
                padding: 16px;
            }

            .price-update {
                font-size: 0.7rem;
                margin: 6px 0 10px 0;
            }

            .product-price {
                font-size: 1.1rem;
            }

            .product-title {
                font-size: 0.95rem;
                min-height: 53.2px;
                -webkit-line-clamp: 2;
            }

            .product-button {
                padding: 10px 16px;
                font-size: 0.85rem;
                min-height: 40px;
            }

            .disclaimer-global {
                padding: 1rem;
                margin: 1.5rem 0;
            }

            .disclaimer-global p {
                font-size: 0.8rem;
            }

            .adsense-container {
                margin: 30px 0;
                padding: 15px;
            }
        }

        @media (max-width: 480px) {
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }

            .logo-section img {
                height: 28px;
                max-width: 155px;
            }

            .category-icon {
                width: 56px;
                height: 56px;
            }

            .products-section {
                padding: 1rem;
                border-radius: 16px;
            }
            .products-section .section-title {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
        }

        @media (min-width: 1025px) {
            .dropdown-arrow-btn {
                display: none !important;
            }

            .nav-item:hover .mega-menu {
                display: block;
            }
        }