/* 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 20px rgba(0,0,0,0.15);
}

.product-card img {
    height: 200px;
    object-fit: cover;
}

.category-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
}

.category-card img {
    transition: transform 0.5s;
    height: 200px;
    object-fit: cover;
    opacity: 0.8;
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-card .card-img-overlay {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

/* Cart Styles */
.cart-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.quantity-input {
    width: 60px;
    text-align: center;
}

/* Checkout Styles */
.checkout-steps {
    margin-bottom: 30px;
}

.step {
    display: inline-block;
    padding: 10px 20px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-right: 10px;
}

.step.active {
    background: #007bff;
    color: white;
}

/* Admin Styles */
.admin-sidebar {
    background: #343a40;
    min-height: 100vh;
    color: white;
}

.admin-sidebar a {
    color: rgba(255,255,255,.8);
    text-decoration: none;
    padding: 10px 20px;
    display: block;
}

.admin-sidebar a:hover {
    background: rgba(255,255,255,.1);
    color: white;
}

.admin-sidebar a.active {
    background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .product-card img {
        height: 150px;
    }
    
    .category-card img {
        height: 150px;
    }
}