/* Global Styles */
body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.navbar-mucav {
    background-color: #000 !important;
    padding: 10px 0;
}

.navbar-brand img {
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255,255,255,0.9);
}

.navbar-dark .navbar-nav .nav-link:hover {
    color: #fff;
}

.footer {
    background: #f8f9fa;
    padding: 40px 0;
    margin-top: 40px;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer a {
    color: #6c757d;
    text-decoration: none;
}

.footer a:hover {
    color: #0d6efd;
}

.product-card {
    transition: transform 0.3s;
    height: 100%;
    margin-bottom: 20px;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.product-img {
    height: 200px;
    object-fit: contain;
    padding: 15px;
    width: 100%;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x600');
    background-size: cover;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.legal-content {
    padding: 50px 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px;
    }
    
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .footer .col-md-4,
    .footer .col-md-2 {
        margin-bottom: 30px;
    }
    
    .footer .text-end {
        text-align: left !important;
        margin-top: 20px;
    }
}

/* Admin Panel Styles */
#sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    background: #343a40;
    color: white;
}

#content {
    margin-left: 250px;
    padding: 20px;
    min-height: 100vh;
}

.login-container {
    max-width: 400px;
    margin: 100px auto;
}

.stat-card {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    color: white;
    margin-bottom: 20px;
}