/* Rock-House BioPharma Custom Styles */

:root {
    --primary-green: #1e3c2c;
    --secondary-green: #2a6e3a;
    --accent-amber: #b45309;
    --accent-red: #991b1b;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

/* Herbarium & Fungarium cards */
.herb-card, .fungi-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* WooCommerce customizations */
.woocommerce .products .product {
    margin-bottom: 2rem;
}

.woocommerce-loop-product__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.price {
    color: var(--secondary-green);
    font-weight: bold;
    font-size: 1.25rem;
}

.add_to_cart_button {
    background-color: var(--primary-green);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: background-color 0.2s;
}

.add_to_cart_button:hover {
    background-color: var(--secondary-green);
}

/* Product gallery */
.woocommerce-product-gallery {
    border-radius: 1rem;
    overflow: hidden;
}

/* Responsive tables for databases */
@media (max-width: 768px) {
    .database-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-green);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-green);
}

/* Loading spinner */
.loader {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--secondary-green);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}