/* Custom Styles */
.product-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.category-card {
    transition: all 0.3s;
    border: 1px solid #dee2e6;
}

.category-card:hover {
    background-color: #198754;
    color: white;
    border-color: #198754;
}

.category-card:hover i,
.category-card:hover h6 {
    color: white !important;
}

.product-card .card-footer {
    border-top: none;
    background-color: transparent;
}

.hero-section {
    background: linear-gradient(135deg, #198754 0%, #146c43 100%);
    color: white;
    padding: 60px 0;
    border-radius: 10px;
    margin-bottom: 30px;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.table thead th {
    background-color: #198754;
    color: white;
    border: none;
}

.btn-success {
    background-color: #198754;
    border-color: #198754;
}

.btn-success:hover {
    background-color: #146c43;
    border-color: #146c43;
}

.badge {
    padding: 8px 12px;
    font-weight: normal;
}

.card-header {
    font-weight: bold;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        padding: 30px 0;
    }
    
    .hero-section h1 {
        font-size: 24px;
    }
    
    .hero-section p {
        font-size: 16px;
    }
}