* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #333;
}

header {
    background-color: #333;
    color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo h1 {
    font-size: 24px;
    margin: 0;
}

header nav ul {
    list-style-type: none;
    display: flex;
    gap: 15px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.product-detail-section {
    padding: 50px 20px;
    text-align: center;
}

.product-detail-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.product-images {
    max-width: 50%;
}

.main-product-image {
    width: 100%;
    height: auto;
}

.image-thumbnails {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
}

.product-info {
    max-width: 50%;
    text-align: left;
}

.product-info h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.price {
    font-size: 28px;
    color: #e60000;
    margin-bottom: 15px;
}

.product-description {
    font-size: 18px;
    margin-bottom: 25px;
}

.ratings {
    margin-bottom: 20px;
}

.faqs {
    margin-bottom: 30px;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-item h4 {
    font-weight: bold;
}

.checkout-section {
    margin-top: 30px;
}

button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #e60000;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px;
    text-align: center;
}
