/* Global body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2d3e50;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card styles */
.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.card img {
    max-height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d3e50;
    margin-top: 15px;
}

.card-text {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.card-body {
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}

/* Container styles */
.container {
    max-width: 1200px;
}

/* Add to Cart button styling (changed to blue) */
.add-to-cart {
    width: 100%;
    background-color: #007bff; /* Blue */
    color: white;
    border: none;
    padding: 10px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}

.add-to-cart:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Cart Button with Icon */
#cartButton {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#cartCount {
    font-size: 0.9rem;
    font-weight: bold;
}
