[file name]: style-custom.css
[file content begin]
/* 
LabKimiaJKT Custom CSS Overrides
File ini digunakan untuk modifikasi tampilan tanpa mengubah file utama style.css
Tambahkan di semua file HTML setelah style.css: <link rel="stylesheet" href="style-custom.css">
*/

/* ==================== PRODUCT CARD ENHANCEMENTS ==================== */

/* Perkecil grid item produk untuk 5 kotak per baris */
.products .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

/* Perbesar dan perindah kartu produk */
.products .product-card {
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e6edf5;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: linear-gradient(145deg, #ffffff, #f8fafd);
}

.products .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(42, 92, 170, 0.15);
    border-color: #2A5CAA;
}

/* Perkecil area gambar produk */
.products .product-card .product-image {
    height: 180px;
    border-bottom: 2px solid #f0f4f8;
    overflow: hidden;
    position: relative;
}

.products .product-card .product-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products .product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Perkecil padding dan typography di info produk */
.products .product-card .product-info {
    padding: 20px;
    background: white;
}

.products .product-card .product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #1a3c75;
    line-height: 1.3;
    min-height: 50px;
}

.products .product-card .product-description {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #5a6c7d;
    margin-bottom: 15px;
    min-height: 70px;
}

/* Perkecil dan perindah harga */
.products .product-card .product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2A5CAA;
    margin-bottom: 20px;
    padding: 8px 0;
    border-top: 1px dashed #e6edf5;
    border-bottom: 1px dashed #e6edf5;
}

/* Perkecil tombol aksi */
.products .product-card .product-actions {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.products .product-card .btn-add-to-cart {
    flex: 2;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    background: linear-gradient(135deg, #4CAF50, #3d8b40);
    border: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.products .product-card .btn-add-to-cart:hover {
    background: linear-gradient(135deg, #3d8b40, #2e6c31);
    transform: scale(1.03);
    box-shadow: 0 4px 12px rgba(60, 139, 63, 0.3);
}

.products .product-card .btn-view-details {
    flex: 1;
    padding: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    background: transparent;
    color: #2A5CAA;
    border: 2px solid #2A5CAA;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.products .product-card .btn-view-details:hover {
    background: #2A5CAA;
    color: white;
    transform: scale(1.03);
}

/* ==================== CATEGORY CARD ENHANCEMENTS ==================== */

.categories .category-card {
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    background: linear-gradient(145deg, #ffffff, #f8fafd);
    border: 1px solid #e6edf5;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.categories .category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(42, 92, 170, 0.15);
    border-color: #2A5CAA;
    background: linear-gradient(145deg, #f8fafd, #ffffff);
}

.categories .category-card .category-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    color: #2A5CAA;
    background: rgba(42, 92, 170, 0.1);
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}

.categories .category-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a3c75;
}

.categories .category-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #5a6c7d;
}

/* ==================== RESPONSIVE ADJUSTMENTS ==================== */

@media (max-width: 1200px) {
    .products .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 18px;
    }
    
    .products .product-card .product-image {
        height: 160px;
    }
    
    .products .product-card .product-info h3 {
        font-size: 1rem;
        min-height: 45px;
    }
    
    .products .product-card .product-description {
        font-size: 0.85rem;
        min-height: 65px;
    }
}

@media (max-width: 992px) {
    .products .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 16px;
    }
    
    .products .product-card .product-image {
        height: 150px;
    }
    
    .products .product-card .product-info {
        padding: 18px;
    }
    
    .products .product-card .product-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .products .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 14px;
    }
    
    .products .product-card {
        border-radius: 12px;
    }
    
    .products .product-card .product-image {
        height: 130px;
    }
    
    .products .product-card .product-info {
        padding: 15px;
    }
    
    .products .product-card .product-info h3 {
        font-size: 0.95rem;
        min-height: auto;
    }
    
    .products .product-card .product-description {
        min-height: auto;
        font-size: 0.8rem;
        margin-bottom: 12px;
    }
    
    .products .product-card .product-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .products .product-card .btn-add-to-cart,
    .products .product-card .btn-view-details {
        padding: 8px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .products .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 12px;
    }
    
    .products .product-card .product-image {
        height: 120px;
    }
    
    .products .product-card .product-info {
        padding: 12px;
    }
    
    .products .product-card .product-info h3 {
        font-size: 0.9rem;
    }
    
    .categories .category-card {
        padding: 20px 15px;
    }
    
    .categories .category-card .category-icon {
        font-size: 2.5rem;
        width: 70px;
        height: 70px;
    }
}

/* ==================== ACCESSIBILITY ENHANCEMENTS ==================== */

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary,
    .btn-secondary {
        border: 2px solid black;
    }
    
    .product-card {
        border: 2px solid black;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .product-card,
    .category-card {
        transition: none !important;
    }
    
    .skeleton {
        animation: none !important;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .product-card,
    .category-card {
        background: #2d2d2d;
        border-color: #444;
        color: #f0f0f0;
    }
    
    .product-card h3,
    .category-card h3 {
        color: #f0f0f0;
    }
    
    .product-description,
    .category-card p {
        color: #b0b0b0;
    }
}

/* Print styles */
@media print {
    .header,
    .hero-buttons,
    .product-actions,
    .footer,
    .menu-toggle {
        display: none !important;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .product-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc !important;
    }
    
    a[href]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}
[file content end]