/* assets/css/style.css */
:root {
    --primary-color: #007bff;
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
}

/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f8f9fa;
}

/* Product Card 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 20px rgba(0,0,0,0.15);
}

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card .rating i {
    font-size: 12px;
}

/* Category Card Styles */
.category-card {
    transition: all 0.3s;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.category-card:hover {
    background-color: var(--primary-color);
    color: white;
}

.category-card:hover i {
    color: white !important;
}

/* Campaign Card Styles */
.campaign-card {
    border: none;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

/* Cart Styles */
.cart-item {
    background: white;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

/* Checkout Styles */
.checkout-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.step {
    flex: 1;
    text-align: center;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
    margin: 0 5px;
}

.step.active {
    background: var(--primary-color);
    color: white;
}

/* Admin Sidebar Styles */
.sidebar {
    min-height: 100vh;
    background: linear-gradient(180deg, #343a40 0%, #212529 100%);
}

.sidebar .nav-link {
    color: rgba(255,255,255,0.8);
    padding: 10px 20px;
    transition: all 0.3s;
}

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

.sidebar .nav-link.active {
    color: white;
    background: var(--primary-color);
}

/* Invoice Styles */
.invoice-box {
    max-width: 800px;
    margin: auto;
    padding: 30px;
    border: 1px solid #eee;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    background: white;
}

.invoice-header {
    text-align: center;
    margin-bottom: 30px;
}

.invoice-details {
    margin-bottom: 30px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .product-card .card-img-top {
        height: 150px;
    }
    
    .checkout-steps {
        flex-direction: column;
    }
    
    .step {
        margin: 5px 0;
    }
}

/* Loading Spinner */
.spinner-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.toast {
    min-width: 250px;
    margin-bottom: 10px;
}