:root {
    --orange-primary: #FF6B00;
    --purple-primary: #6B00FF;
    --red-primary: #FF0000;
    --black-primary: #000000;
}

body {
    font-family: 'Arial', sans-serif;
}

.navbar-brand img {
    max-height: 40px;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
}

.product-card {
    border: none;
    transition: transform 0.3s ease;
    margin-bottom: 20px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-card .card-title {
    color: var(--black-primary);
}

.product-card .price {
    color: var(--orange-primary);
    font-size: 1.2em;
    font-weight: bold;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

.category-card i {
    color: var(--orange-primary);
    font-size: 2em;
    margin-bottom: 15px;
}

/* Admin Dashboard Styles */
.admin-sidebar {
    background-color: #343a40;
    min-height: 100vh;
    padding-top: 20px;
}

.admin-sidebar .nav-link {
    color: white;
    padding: 10px 15px;
}

.admin-sidebar .nav-link:hover {
    background-color: rgba(255,255,255,0.1);
}

.dashboard-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.stats-number {
    font-size: 2em;
    font-weight: bold;
    color: var(--orange-primary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section {
        padding: 50px 0;
    }
    
    .hero-section h1 {
        font-size: 2em;
    }
}
