/* General body styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

/* Header */
.nav-link {
    color: #fff !important;
    font-weight: 600;
}

.nav-link:hover {
    color: #ffca2c !important;
}

#h22 {
    color: #fff;
}

/* Hero section */
#mainbody h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

#mainbody h3 {
    font-size: 1.5rem;
    font-weight: 500;
}

/* Product Card */
.product-card {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    background-color: #fff;
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: scale(1.05);
}

.product-card img {
    height: 150px;
    object-fit: contain;
}

/* Footer */
footer, .container-fluid.bg-dark {
    background-color: #e09d7a !important;
    color: #fff !important;
    padding: 20px 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ffca2c;
}

/* Cart Page */
#cartList {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
}

#cartList div {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#cartList div:last-child {
    border-bottom: none;
}

#cartList h4 {
    margin-top: 15px;
    text-align: right;
}

/* Buttons */
.btn {
    border-radius: 5px;
    font-weight: 600;
}

