/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* Coming Soon Page Styles */
.coming-soon {
    background: linear-gradient(135deg, #4b6cb7, #182848);
    color: white;
}

.coming-soon-message {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(5px);
}

/* Product Card Styles */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
}

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

.product-img {
    height: 200px;
    object-fit: cover;
    object-position: center;
}

.card-body {
    display: flex;
    flex-direction: column;
}

.btn-add-to-cart {
    margin-top: auto;
}

/* Badge for new products */
.badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: #ff6b6b;
}

/* Cart item styles */
.cart-item {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
}

.cart-item:last-child {
    border-bottom: none;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .coming-soon-message {
        padding: 1rem;
    }
    
    .product-img {
        height: 150px;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate__fadeIn {
    animation: fadeIn 1s ease-in-out;
}