@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

.chemical-catalogue-container {
    max-width: 1200px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.chemical-category-section {
    margin-bottom: 60px;
}

.chemical-category-title {
    font-size: 2rem;
    color: #2D1A47;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 3px solid #ccff00;
    display: inline-block;
}

.chemical-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.chemical-product-card {
    background: #fff;
    border: 2px solid #696B6B; /* Specific orange border */
    padding: 30px 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 200px;
}

.chemical-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 87, 34, 0.1);
     border: 2px solid #95C11F;
}

.chemical-product-title {
    color: #2D1A47; /* Dark purple/navy */
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 3em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chemical-product-meta {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.8;
}

.chemical-product-meta p {
    margin: 5px 0;
}

.chemical-product-meta .label {
    font-weight: 600;
    color: #2D1A47;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .chemical-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

@media (max-width: 480px) {
    .chemical-products-grid {
        grid-template-columns: 1fr;
    }
}