    
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f5f7fa;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header Styles */
        header {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            color: white;
            padding: 1.5rem 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            display: flex;
            align-items: center;
        }
        
        .logo i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .logo span {
            color: #3498db;
        }
        
        /* Navigation */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 1.5rem;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            padding: 0.5rem 0.8rem;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover, nav ul li a.active {
            background-color: rgba(255, 255, 255, 0.1);
            color: #3498db;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }


        
        /* Main Content */
.main-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr; /* Tambahkan ini */
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: start;
    min-height: 100vh; /* Atur tinggi minimum */
}
        
        .content-box {
            background-color: white;
            border-radius: 8px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 1.5rem;
        }
        
        /* PRODUCTS SECTION - NOW AT TOP */
        .products-section {
            margin: 2rem 0 3rem 0;
        }
        
        .products-section h2 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        
        .products-section h1 {
            color: #2c3e50;
            text-align: center;
            margin-bottom: 2rem;
            font-size: 2rem;
        }
        
        .highlight-banner {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: white;
            padding: 1.5rem;
            border-radius: 8px;
            text-align: center;
            margin: 2rem 0;
            box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
        }
        
        .highlight-banner h3 {
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
            margin-top: 1.5rem;
        }
        

/* Sponsored Badge */
.sponsored-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #f39c12;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    z-index: 1;
    box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.sponsored-badge {
    z-index: 10; /* dari 1 ke 10 */
}

.sponsored-badge {
    transition: all 0.3s ease;
}

.sponsored-badge:hover {
    background-color: #e67e22;
    transform: scale(1.05);
}
        
.product-card {
	position: relative; /* Tambahkan ini */
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    height: 100%; /* Pastikan semua card memiliki tinggi yang sama */
}
        
        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.15);
        }
        
        .product-img {
            height: 180px;
            background-color: #ecf0f1;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        
.product-img img {
    width: auto; /* Ganti dari 100% */
    height: 100%;
    object-fit: contain; /* Ganti dari cover ke contain */
    max-width: 100%; /* Tambahkan untuk responsif */
}
        
.product-info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Mengisi ruang yang tersedia */
}
        

        
    .product-info h4 {
        margin: 0 0 12px 0;
        color: #333;
        font-size: 1rem;
        font-weight: 600;
        line-height: 1.4;
        height: 4.2em;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
        
        
        .product-price {
            font-size: 1.2rem;
            font-weight: 700;
            color: #3498db;
            margin-bottom: 1rem;
        }
        
        .product-rating {
            color: #f39c12;
            margin-bottom: 1rem;
        }
        
.product-btn {
    display: block;
    text-align: center;
    background-color: #3498db;
    color: white;
    padding: 0.6rem 0;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: auto; /* Ini akan mendorong tombol ke bawah */
}
        
        .product-btn:hover {
            background-color: #2980b9;
        }
        
        .affiliate-disclaimer {
            font-size: 0.85rem;
            color: #7f8c8d;
            text-align: center;
            margin-top: 1rem;
            font-style: italic;
        }
        
        /* Content Headings */
        .content-box h1, .content-box h2, .content-box h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .content-box h2 {
            color: #1a252f;
            margin: 1.5rem 0 1rem;
        }
        
        .content-box h3 {
            color: #2c3e50;
            margin: 1.5rem 0 1rem;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .content-box p {
            margin-bottom: 1rem;
            color: #555;
        }
        
        .highlight {
            background-color: #f8f9fa;
            border-left: 4px solid #3498db;
            padding: 1.2rem;
            margin: 1.5rem 0;
            border-radius: 0 8px 8px 0;
        }
        
        .feature-list {
            list-style-type: none;
            margin: 1.5rem 0;
        }
        
        .feature-list li {
            padding: 0.5rem 0;
            padding-left: 2rem;
            position: relative;
        }
        
		.feature-list li:before {
		    content: "\2713"; /* Unicode untuk check mark */
		    color: #3498db;
		    font-weight: bold;
		    position: absolute;
		    left: 0;
		}
        
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 1.5rem 0;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }
        
        table th {
            background-color: #2c3e50;
            color: white;
            padding: 1rem;
            text-align: left;
        }
        
        table td {
            padding: 1rem;
            border-bottom: 1px solid #eee;
        }
        
        table tr:hover {
            background-color: #f9f9f9;
        }
        
/* Sidebar dengan scroll otomatis */
.sidebar {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%; /* Pastikan sidebar mengambil 100% tinggi parent */
    max-height: calc(338vh - 200px); /* Batasi tinggi maksimum */
    overflow-y: auto; /* Tambahkan scroll bar vertikal */
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
}

/* Tambahkan wrapper untuk konten sidebar */
.sidebar-content {
    flex-grow: 1;
}

/* GANTI .left-content dengan ini */
.left-content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Pastikan left content mengambil 100% tinggi parent */
}

/* GANTI .content-box di left-content dengan ini */
.left-content .content-box {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1; /* Isi semua ruang yang tersedia */
    margin-bottom: 0; /* Hapus margin bawah */
}

/* Style untuk scroll bar di sidebar */
.sidebar::-webkit-scrollbar {
    width: 8px;
}

.sidebar::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb {
    background: #3498db;
    border-radius: 10px;
}

.sidebar::-webkit-scrollbar-thumb:hover {
    background: #2980b9;
}

/* Untuk browser Firefox */
.sidebar {
    scrollbar-width: thin;
    scrollbar-color: #3498db #f1f1f1;
}

/* Pastikan left content tidak memiliki batasan tinggi khusus */
.left-content .content-box {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Tidak ada margin-bottom karena tidak ada elemen setelahnya di container ini */
}
        
        .sidebar h3 {
            color: #2c3e50;
            margin-bottom: 1.5rem;
            padding-bottom: 0.8rem;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .category-list {
            list-style: none;
        }
        
        .category-list li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        
        .category-list li:last-child {
            border-bottom: none;
        }
        
        .category-list a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .category-list a:hover {
            color: #3498db;
        }
        
        .category-list i {
            margin-right: 10px;
            color: #3498db;
        }
        
        .feature-box {
            background-color: #f8f9fa;
            border-radius: 6px;
            padding: 1.5rem;
            margin-top: 1.5rem;
        }
        
        .feature-box h4 {
            color: #2c3e50;
            margin-bottom: 1rem;
        }
        
        /* Google Adsense Placeholder */
		.adsense-box {
		    background-color: transparent; /* Ubah dari #f8f9fa */
		    border-radius: 6px;
		    padding: 0; /* Ubah dari 1.5rem */
		    margin-top: 1.5rem;
		    text-align: center;
		    border: none; /* Ubah dari 2px dashed #ddd */
		}
        
        .adsense-placeholder {
            width: 100%;
            height: 250px;
            background-color: #e8f4f8;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: #3498db;
            border-radius: 4px;
            margin: 0 auto;
        }
        
        .adsense-placeholder i {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        
        .adsense-placeholder p {
            font-size: 0.9rem;
            color: #7f8c8d;
            max-width: 200px;
        }
        
        /* Article Links */
        .article-links {
            list-style: none;
        }
        
        .article-links li {
            margin-bottom: 0.8rem;
            padding-bottom: 0.8rem;
            border-bottom: 1px dashed #eee;
        }
        
        .article-links li:last-child {
            border-bottom: none;
        }
        
        .article-links a {
            color: #333;
            text-decoration: none;
            display: flex;
            align-items: center;
            transition: color 0.3s ease;
        }
        
        .article-links a:hover {
            color: #3498db;
        }
        
        .article-links i {
            margin-right: 10px;
            color: #3498db;
        }
        
        /* Footer */
        footer {
            background-color: #1a252f;
            color: #ccc;
            padding: 3rem 0 1.5rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section h4 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #3498db;
        }
        
        .copyright {
            text-align: center;
            padding-top: 1.5rem;
            border-top: 1px solid #2c3e50;
            font-size: 0.9rem;
            color: #999;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .benefit-item {
            background-color: rgba(52, 152, 219, 0.1);
            padding: 1rem;
            border-radius: 6px;
            text-align: center;
            transition: all 0.3s ease;
        }
        
        .benefit-item:hover {
            background-color: rgba(52, 152, 219, 0.2);
            transform: translateY(-3px);
        }
        
        .benefit-item a {
            color: #2c3e50;
            text-decoration: none;
            font-weight: 500;
            display: block;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
    .main-content {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static; /* Nonaktifkan sticky di mobile */
        max-height: none; /* Hapus batasan tinggi di mobile */
        overflow-y: visible; /* Hapus scroll di mobile */
        top: 0;
    }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
                text-align: center;
            }
            
            nav ul {
                margin-top: 1.5rem;
                justify-content: center;
            }
            
            nav ul li {
                margin: 0 0.5rem;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
            }
            
            nav {
                display: none;
                width: 100%;
                margin-top: 1rem;
            }
            
            nav.active {
                display: block;
            }
            
            nav ul {
                flex-direction: column;
            }
            
            nav ul li {
                margin: 0.5rem 0;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr;
            }
            
            .product-grid {
                grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            }
            
            .products-section h2 {
                font-size: 1.8rem;
            }

            .products-section h1 {
                font-size: 1.8rem;
            }

        }
        
/* ==========================================
   ARTICLE ENHANCEMENTS
   ========================================== */

/* Material Section Improvements */
.material-comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.material-advantage-box, .material-limitation-box {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    border: 1px solid #eef2f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.material-advantage-box:hover, .material-limitation-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.material-advantage-box {
    border-left: 4px solid #27ae60;
}

.material-limitation-box {
    border-left: 4px solid #e74c3c;
}

.material-advantage-box h4, .material-limitation-box h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
}

.material-advantage-box h4:before {
    content: "\2713"; /* CSS Unicode untuk &#10003; */
    color: #27ae60;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

.material-limitation-box h4:before {
    content: "\26A0"; /* CSS Unicode untuk &#9888; */
    color: #e74c3c;
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
}

/* Usage Matrix Improvements */
.usage-matrix {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    border: 1px solid #e1e8f0;
}

.usage-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.usage-item {
    background-color: white;
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid #3498db;
    transition: all 0.3s ease;
}

.usage-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.15);
}

.usage-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.usage-item p {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

/* FAQ Section Improvements */
.faq-container {
    margin-top: 1.5rem;
}

.faq-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border-left: 3px solid #3498db;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transform: translateX(5px);
}

.faq-question {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.faq-question:before {
    content: "Q:";
    color: #3498db;
    font-weight: bold;
    margin-right: 10px;
    flex-shrink: 0;
}

.faq-answer {
    color: #555;
    padding-left: 2rem;
    position: relative;
}

.faq-answer:before {
    content: "A:";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Budget Tier Styling */
.budget-tier-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.budget-tier {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    border-top: 4px solid #3498db;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.budget-tier:hover {
    transform: translateY(-5px);
}

.budget-tier h4 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

.budget-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.8rem;
}

.budget-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* Step-by-step Guide Improvements */
.step-guide {
    counter-reset: step-counter;
    margin: 1.5rem 0;
}

.step-item {
    background-color: white;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 4rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    border: 1px solid #eef2f7;
}

.step-item:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.step-item h3 {
    margin-top: 0;
    margin-bottom: 1rem;
    border: none;
    padding: 0;
    color: #2c3e50;
}

/* Conclusion Box Improvements */
.conclusion-box {
    background: linear-gradient(135deg, #e8f4fc 0%, #d4e9fa 100%);
    border-radius: 10px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 5px solid #3498db;
}

.conclusion-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.conclusion-item {
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.conclusion-item:hover {
    transform: translateY(-3px);
}

.conclusion-item strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Enhanced Table Styling */
.enhanced-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 1.5rem 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-radius: 10px;
    overflow: hidden;
}

.enhanced-table thead th {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 1.2rem;
    text-align: left;
    font-weight: 600;
    border: none;
}

.enhanced-table tbody tr {
    transition: background-color 0.3s ease;
}

.enhanced-table tbody tr:nth-child(even) {
    background-color: #f8fafc;
}

.enhanced-table tbody tr:hover {
    background-color: #e8f4fc;
}

.enhanced-table tbody td {
    padding: 1.2rem;
    border-bottom: 1px solid #eef2f7;
    color: #555;
}

.enhanced-table tbody td:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.enhanced-table tbody tr:last-child td {
    border-bottom: none;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .material-comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .budget-tier-list {
        grid-template-columns: 1fr;
    }
    
    .conclusion-summary {
        grid-template-columns: 1fr;
    }
    
    .usage-matrix-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        padding-left: 3.5rem;
    }
    
    .step-item:before {
        left: 1rem;
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .enhanced-table {
        display: block;
        overflow-x: auto;
    }
    
    .faq-item {
        padding: 1.2rem;
    }
    
    .faq-answer {
        padding-left: 1.5rem;
    }
}	


.chevron-icon {
    margin-right: 8px;
    color: #3498db;
    flex-shrink: 0;
}

.category-list a {
    color: #333;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: color 0.3s ease;
}

.category-list a:hover {
    color: #3498db;
}

.category-list a:hover .chevron-icon {
    color: #3498db;
    transform: translateX(3px); /* Efek hover ringan */
    transition: transform 0.2s ease;
}



/* Style untuk logo image */
.logo-image {
    height: 32px; /* Sesuaikan tinggi logo */
    width: auto;
    margin-right: 10px;
    vertical-align: middle;
}

/* Update style .logo untuk menyesuaikan dengan gambar */
.logo {
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        height: 28px;
        margin-right: 8px;
    }
    
    .logo {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 24px;
        margin-right: 6px;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    /* Opsional: Sembunyikan teks di mobile sangat kecil */
    .logo span {
        display: none;
    }
    
    .logo:after {
        content: ".com";
        font-size: 1.3rem;
    }
}

/* Price Timestamp Styling */
.price-timestamp {
    font-size: 0.75rem;
    color: #7f8c8d;	
    margin-bottom: 12px;
    line-height: 1.3;
    background: #f8f9fa;
    padding: 6px 10px;
    border-radius: 5px;
    border-left: 3px solid #3498db;
    transition: all 0.3s ease;
}

.price-timestamp:hover {
    background: #edf2f7;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.price-timestamp .timestamp-label {
    font-weight: 500;
    color: #555;
    display: inline-block;
    margin-right: 5px;
}

.price-timestamp .timestamp-value {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    color: #2c3e50;
    display: inline-block;
    background: white;
    padding: 1px 5px;
    border-radius: 3px;
    border: 1px solid #e0e6ed;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .price-timestamp {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .price-timestamp .timestamp-value {
        font-size: 0.65rem;
    }
}

/* Fallback Notice Styling */
.fallback-notice {
    grid-column: 1/-1;
    text-align: center;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    color: #856404;
    font-size: 0.9rem;
    animation: fadeIn 0.5s ease;
}

.fallback-notice strong {
    color: #856404;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}