        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
        }

        body {
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }

        body.menu-open {
            overflow: hidden;
        }

        /* ===== HEADER STICKY ===== */
        .site-header {
            background-color: white;
            border-bottom: 1px solid #e9ecef;
            padding: 0.75rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .header-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 2rem;
        }

        /* Logo Section */
        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .logo-section img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            text-decoration: none;
            background: linear-gradient(to right, #e74c3c, #3498db);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .logo-text span {
            background: linear-gradient(to right, #e74c3c, #3498db);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        /* Search Box */
        .search-wrapper {
            flex: 1;
            max-width: 650px;
            margin: 0 auto;
            position: relative;
        }

        .search-box {
            display: flex;
            align-items: center;
            background: #f8f9fa;
            border-radius: 30px;
            padding: 5px;
            border: 1px solid #e0e0e0;
            transition: all 0.3s ease;
            height: 40px;
        }

        .search-box:hover,
        .search-box:focus-within {
            box-shadow: 0 2px 10px rgba(52, 152, 219, 0.2);
            border-color: #3498db;
            background: white;
        }

        .search-box input {
            flex: 1;
            border: none;
            outline: none;
            padding: 12px 15px;
            font-size: 0.95rem;
            background: transparent;
            color: #333;
            border-radius: 30px 0 0 30px;
            height: 100%;
        }

        .search-box button {
            background: linear-gradient(135deg, #3498db, #2980b9);
            border: none;
            border-radius: 20px;
            padding: 0 15px;
            cursor: pointer;
            color: white;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            display: flex;
            align-items: center;
            gap: 5px;
            height: 100%;
        }

        .search-box button:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateY(-1px);
        }

        .search-box button svg {
            width: 18px;
            height: 18px;
            stroke: white;
        }

        .search-button-text {
            display: inline-block;
        }

        /* Share Button */
        .share-button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border: none;
            border-radius: 40px;
            padding: 0.6rem 1.2rem;
            cursor: pointer;
            transition: all 0.3s;
            justify-content: center;
            color: white;
        }

        .share-button:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        }

        .share-button svg {
            width: 16px;
            height: 16px;
            stroke: white;
        }

        .share-button span {
            font-weight: 500;
            font-size: 0.9rem;
            color: white;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: 1px solid #e0e0e0;
            border-radius: 8px;
            padding: 0.5rem 1rem;
            cursor: pointer;
            color: #2c3e50;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .mobile-menu-toggle:hover {
            background: #f8f9fa;
        }

        .mobile-menu-toggle svg {
            width: 20px;
            height: 20px;
        }

        /* Overlay untuk mobile */
        .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;
        }

        /* ===== NAVIGASI STICKY ===== */
        .nav-bar {
            background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
            border-bottom: 1px solid #465c78;
            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;
        }

        .nav-item > .menu-button {
            display: inline-block;
            padding: 1rem 1.1rem;
            text-decoration: none;
            color: #ecf0f1;
            font-weight: 500;
            font-size: 0.88rem;
            border-bottom: 2px solid transparent;
            transition: all 0.2s;
            white-space: nowrap;
            background: none;
            border: none;
            cursor: pointer;
            font-family: inherit;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        .nav-item > .menu-button:hover {
            border-bottom-color: #3498db;
            color: #ffffff;
            background: rgba(52, 152, 219, 0.1);
        }

        .nav-item.active .chevron-down-svg {
            transform: rotate(180deg);
        }

        .chevron-down-svg {
            margin-left: 0.3rem;
            width: 18px;
            height: 18px;
            transition: transform 0.3s;
            stroke: #ecf0f1;
        }

        /* Tombol Close Mobile */
        .mobile-nav-header {
            display: none;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 1.5rem;
            border-bottom: 1px solid #e9ecef;
            background: white;
        }

        .mobile-nav-header h3 {
            font-size: 1.1rem;
            color: #2c3e50;
        }

        .mobile-close-btn {
            background: transparent;
            border: none;
            cursor: pointer;
            color: #7f8c8d;
            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: #f8f9fa;
            color: #3498db;
        }

        .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: 1px solid #e9ecef;
            border-bottom: 1px solid #e9ecef;
            box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
            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(4, 1fr);
            gap: 2rem;
        }

        .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: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #3498db;
            margin-bottom: 1rem;
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 0.5rem;
        }

        .menu-col ul {
            list-style: none;
        }

        .menu-col li {
            margin-bottom: 0.6rem;
        }

        .menu-col a {
            text-decoration: none;
            color: #2c3e50;
            font-size: 0.9rem;
            display: block;
            transition: all 0.2s;
        }

        .menu-col a:hover {
            color: #3498db;
            padding-left: 5px;
        }

        /* ===== MAIN CONTENT ===== */
        .content-wrapper {
            max-width: 1280px;
            margin: 2rem auto;
            padding: 0 1rem;
        }

        /* Breadcrumb */
        .breadcrumb {
            color: #7f8c8d;
            font-size: 0.9rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid #e9ecef;
        }

        .breadcrumb a {
            color: #3498db;
            text-decoration: none;
        }

        .breadcrumb a:hover {
            text-decoration: underline;
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            padding: 3rem 2rem;
            border-radius: 12px;
            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: 600;
            text-shadow: 0 2px 5px rgba(0,0,0,0.4);
            color: white;
        }

        .hero p {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            text-shadow: 0 1px 3px rgba(0,0,0,0.5);
            color: white;
        }

        .btn {
            display: inline-block;
            padding: 0.7rem 1.8rem;
            background: linear-gradient(135deg, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 40px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
        }

        .btn:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
        }

        /* Info Box */
        .info-box {
            background: #e8f4fd;
            border-left: 4px solid #3498db;
            padding: 1.5rem;
            margin: 2rem 0;
            border-radius: 0 8px 8px 0;
            color: #2c3e50;
        }

        /* Section Title */
        .section-title {
            font-size: 1.8rem;
            margin: 2rem 0 1rem;
            color: #2c3e50;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            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: 12px;
            text-align: center;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            border: 1px solid #e9ecef;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
        }

        .category-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #3498db;
        }

        .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.05);
        }

        .category-card h3 {
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
            color: #2c3e50;
            font-weight: 600;
        }

        .category-card p {
            color: #7f8c8d;
            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: 12px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.04);
            transition: all 0.3s;
            border: 1px solid #e9ecef;
        }

        .article-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border-color: #3498db;
        }

        .article-image {
            height: 200px;
            background: linear-gradient(135deg, #2c3e50, #3498db);
            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.4) 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: #2c3e50;
            line-height: 1.4;
        }

        .article-content p {
            color: #6c757d;
            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, #3498db, #2980b9);
            color: white;
            text-decoration: none;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s;
        }

        .read-more:hover {
            background: linear-gradient(135deg, #2980b9, #3498db);
            transform: translateX(5px);
        }

        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%) translateY(100px);
            background: #2c3e50;
            color: white;
            padding: 12px 24px;
            border-radius: 40px;
            font-size: 0.9rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            z-index: 1000;
            opacity: 0;
            transition: all 0.3s;
            border-left: 4px solid #3498db;
        }

        .toast.show {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        /* ===== SEARCH RESULTS STYLES ===== */
        .search-results {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
            z-index: 1000;
            max-height: 400px;
            overflow-y: auto;
            margin-top: 5px;
        }

        .search-result-item {
            display: block;
            padding: 15px;
            text-decoration: none;
            color: #333;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.2s;
        }

        .search-result-item:hover {
            background-color: #f8f9fa;
        }

        .search-result-item.selected {
            background-color: #e8f4fd;
            border-left: 3px solid #3498db;
        }

        .search-result-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: #2c3e50;
        }

        .search-result-content p {
            font-size: 0.85rem;
            color: #6c757d;
            margin-bottom: 3px;
        }

        .search-result-url {
            color: #3498db;
            font-size: 0.8rem;
        }

        .search-highlight {
            background-color: #fff8c6;
            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: 1px solid #e0e0e0;
            border-radius: 0 0 12px 12px;
            color: #7f8c8d;
            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: #7f8c8d;
        }

        /* ===== FOOTER ===== */
        footer {
            background: #2c3e50;
            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: 1px solid #465c78;
            padding-bottom: 0.5rem;
            color: #ecf0f1;
        }

        .footer-section a {
            color: #a8c0d0;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            font-size: 0.85rem;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: #3498db;
        }

        .copyright {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid #465c78;
            color: #95a5a6;
            font-size: 0.8rem;
        }

        /* ===== RESPONSIVE ===== */
        @media (min-width: 769px) and (max-width: 1024px) {
            .nav-item > .menu-button {
                padding: 1rem 0.8rem;
                font-size: 0.9rem;
            }
            
            .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.1);
            }
            
            .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;
            }

            .logo-text {
                font-size: 1.2rem;
            }

            .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: 1px solid #e9ecef;
                transition: right 0.3s ease;
                overflow-y: auto;
            }

            .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 > .menu-button {
                display: flex !important;
                justify-content: space-between !important;
                align-items: center !important;
                width: 100% !important;
                padding: 1rem 1.5rem;
                border-bottom: 1px solid #f0f0f0;
                font-size: 1rem;
                color: #2c3e50;
            }

            .chevron-down-svg {
                margin-left: 0 !important;
                flex-shrink: 0 !important;
                stroke: #2c3e50;
            }

            .mega-menu {
                position: static;
                box-shadow: none;
                border: none;
                padding: 0;
                background: #f8f9fa;
                display: none;
            }

            .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: 12px;
            }
            
            .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;
            }
        }

        @media (max-width: 480px) { 
            .btn {
                padding: 0.5rem 1.2rem;
                font-size: 0.85rem;
            }
            
            .category-icon {
                width: 56px;
                height: 56px;
            }
        }

        @media (min-width: 1025px) {
            .nav-item:hover .mega-menu {
                display: block;
            }
        }

        /* Ads Container */
        .adsense-container {
            background-color: #f8f9fa;
            border: 1px dashed #ccc;
            padding: 20px;
            text-align: center;
            margin: 40px 0;
            border-radius: 5px;
            max-width: 1250px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 768px) {
            .adsense-container {
                margin: 30px 0;
                padding: 15px;
            }
        }

        /* ===== 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(0,0,0,0.05);
            border: 1px solid #e9ecef;
        }

        .products-section .section-title {
            font-size: 1.8rem;
            margin: 0 0 2rem 0;
            color: #2c3e50;
            position: relative;
            padding-bottom: 0.5rem;
        }

        .products-section .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: linear-gradient(135deg, #3498db, #2ecc71);
            border-radius: 2px;
        }

        .loading {
            text-align: center;
            padding: 3rem;
            color: #7f8c8d;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .loading::after {
            content: '';
            width: 20px;
            height: 20px;
            border: 3px solid #e9ecef;
            border-top-color: #3498db;
            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: 1px solid #e8ecef;
            border-radius: 12px;
            padding: 0;
            background-color: white;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-color: #d0d7de;
        }

        .product-image {
            width: 100%;
            height: 220px;
            object-fit: contain;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-bottom: 1px solid #f1f3f4;
            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: #1a1a1a;
            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: #2e7d32;
            font-weight: 700;
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .price-update {
            font-size: 0.75rem;
            color: #666;
            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, #1976d2, #1565c0);
            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, #1565c0, #0d47a1);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(25, 118, 210, 0.3);
            color: white;
            text-decoration: none;
        }

        .product-button:active {
            transform: translateY(0);
        }

        @media (max-width: 768px) {
            .product-card {
                border-radius: 8px;
            }
            
            .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;
            }
        }

        .price-timestamp {
            font-size: 0.65rem !important;
            color: #6c757d !important;
            margin: 0 0 0.8rem 0 !important;
            background: #f8f9fa !important;
            padding: 6px 10px !important;
            border-radius: 6px !important;
            border-left: 3px solid #3498db !important;
            line-height: 1.3 !important;
        }

        .product-btn {
            background: linear-gradient(135deg, #1976d2, #1565c0);
            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, #1565c0, #0d47a1);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(25, 118, 210, 0.3);
        }

        @media (min-width: 481px) and (max-width: 768px) {
            .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;
            }
        }

        @media (max-width: 480px) {
            .products-section {
                padding: 1rem;
                border-radius: 16px;
            }
            .products-section .section-title {
                font-size: 1.3rem;
                margin-bottom: 1rem;
            }
        }

        /* Disclaimer Global Styles */
        .disclaimer-global {
            background-color: #f8f9fa;
            border-left: 4px solid #e63946;
            padding: 1.25rem;
            margin: 2rem 0;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            border-radius: 0 4px 4px 0;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
        }

        .disclaimer-title {
            color: #e63946;
            font-size: 1.1rem;
            font-weight: 600;
            margin-top: 0;
            margin-bottom: 0.75rem;
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
        }

        .disclaimer-global p {
            color: #495057;
            font-size: 0.85rem;
            line-height: 1.6;
            margin: 0;
            text-align: justify;
        }

        .disclaimer-global a {
            color: #e63946;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        .disclaimer-global a:hover {
            color: #c1121f;
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .disclaimer-global {
                padding: 1rem;
                margin: 1.5rem 0;
            }
            
            .disclaimer-global p {
                font-size: 0.8rem;
            }
        }

        .affiliate-disclosure-notice {
            background-color: #fff8e1;
            border-left: 4px solid #ffc107;
            padding: 15px;
            margin: 20px 0;
            font-size: 13px;
            line-height: 1.6;
        }

        .affiliate-disclosure-notice a {
            color: #0288d1;
            text-decoration: underline;
        }