 /* Custom color scheme */
 body {
    background-color: #f4e3d7; /* Dark vanilla background */
    color: #3d3d3d; /* Darker text color for better contrast */
}
.navbar, footer {
    background-color: #d2b48c; /* Tan/brownish navbar and footer */
}
.navbar-brand, .nav-link, footer p {
    color: #3d3d3d !important; /* Darker text for navbar links */
}
.card {
    background-color: #f5e8dc; /* Lighter vanilla tone for the cards */
    border: none;
}
.card-title {
    color: #3d3d3d; /* Darker text for card titles */
}
.btn-primary {
    background-color: #a67d5e; /* Muted brown for buttons */
    border: none;
}
.btn-primary:hover {
    background-color: #8b6749; /* Darker brown on hover */
}

.product-container {
    background-color: #f5e8dc;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 30px;
}
.product-image {
    width: 100%;
    height: 100%;
    border: 1px solid #ddd;
}
.product-details {
    padding: 20px;
}
.product-title {
    font-size: 28px;
    font-weight: bold;
    color: #333;
}
.product-price {
    font-size: 24px;
    color: #007bff;
    font-weight: bold;
    margin-top: 10px;
}
.product-description {
    margin-top: 20px;
    color: #555;
}
.product-specs {
    margin-top: 20px;
}
.product-specs h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}
.product-specs ul {
    list-style-type: none;
    padding-left: 0;
    color: #555;
}
.product-specs ul li {
    margin-bottom: 5px;
}
.btn-buy {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    margin-top: 20px;
}
.btn-buy:hover {
    background-color: #0056b3;
}