        * {
            font-family: 'Poppins', sans-serif;
        }
        
        .btn-primary {
            background: #2e7d32;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #1b5e20;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(46, 125, 50, 0.3);
        }
        
        .product-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border-radius: 12px;
            overflow: hidden;
        }
        
        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .breadcrumb-item {
            color: #666;
            transition: color 0.3s ease;
        }
        
        .breadcrumb-item:hover {
            color: #2e7d32;
        }
        
        /* Animasi untuk card */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.5s ease-out forwards;
        }
        
        /* Floating WhatsApp */
        .floating-whatsapp {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        /* CTA Section */
        .cta-gradient {
            background: linear-gradient(135deg, #2e7d32 0%, #1b5e20 100%);
        }
        
        /* Category Tabs */
        .category-tab {
            transition: all 0.3s ease;
        }
        
        .category-tab:hover {
            background: #f8f8f8;
        }
        
        .category-tab.active {
            background: #2e7d32;
            color: white;
        }
        
        /* Judul Card Hijau Terang Tebal - 1 baris */
        .card-title-green {
            color: #2e7d32;
            font-weight: 700;
            font-size: 1.25rem;
            line-height: 1.3;
            white-space: nowrap;
        }
        
        @media (max-width: 768px) {
            .card-title-green {
                white-space: normal;
                font-size: 1.1rem;
            }
        }