/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #232f3e;
    padding: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}

.search-bar input {
    padding: 8px;
    width: 250px;
    border: none;
    border-radius: 3px;
}

.search-bar button {
    padding: 8px;
    background-color: #f0c14b;
    border: none;
    cursor: pointer;
    border-radius: 3px;
}

.nav-links a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
}

.product-section {
    display: flex;
    margin: 20px;
}

.product-images {
    flex: 1;
    padding: 20px;
}

.product-images img {
    width: 100%;
    max-width: 400px;
}

.image-thumbnails {
    display: flex;
    margin-top: 10px;
}

.image-thumbnails img {
    width: 70px;
    margin-right: 10px;
    cursor: pointer;
}

.product-details {
    flex: 2;
    padding: 20px;
}

.product-details h1 {
    font-size: 24px;
}

.rating {
    font-size: 18px;
    margin: 10px 0;
}

.price {
    font-size: 22px;
    color: #B12704;
}

.old-price {
    text-decoration: line-through;
    color: #999;
}

.new-price {
    font-size: 28px;
    font-weight: bold;
}

.discount {
    color: green;
    font-weight: bold;
}

.offers ul {
    list-style: none;
    padding: 0;
}

.offers li {
    margin: 5px 0;
}

.buy-options {
    margin-top: 20px;
}

.buy-now, .add-to-cart {
    padding: 10px 20px;
    margin-right: 10px;
    border: none;
    cursor: pointer;
    background-color: #ff9900;
    color: white;
    font-size: 16px;
    border-radius: 5px;
}

.buy-now:hover, .add-to-cart:hover {
    background-color: #e68a00;
}

/* Footer Styles */
footer {
    background-color: #232f3e;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}
