
/* Basic CSS Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

header {
    background-color: #005a8d;
    color: white;
    padding: 10px 0;
    text-align: center;
}

header .logo h1 {
    margin: 0;
}

header .language a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

.hero {
    text-align: center;
    padding: 20px;
    background-color: #e9ecef;
}

.hero h2 {
    font-size: 24px;
    color: #333;
}

.offer p {
    font-size: 20px;
    color: red;
}

.btn {
    background-color: #005a8d;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

.product {
    display: flex;
    justify-content: space-between;
    padding: 20px;
}

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

.product .product-images img {
    width: 100%;
    height: auto;
}

.thumbnail-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.thumbnail-container img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    margin: 0 5px;
    cursor: pointer;
    border: 2px solid #ccc;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.thumbnail-container img:hover {
    transform: scale(1.1);
    border-color: #005a8d;
}

.thumbnail-container img.active {
    border-color: #005a8d;
}

.product-info {
    width: 45%;
}

.product-options {
    margin-top: 20px;
}

.product-options label {
    display: block;
    margin-bottom: 5px;
}

.product-options select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

.order-form {
    padding: 20px;
    background-color: #fff;
    margin: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.order-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
}

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

footer .social-links a {
    color: white;
    margin: 0 10px;
    text-decoration: none;
}

/* Responsive design for mobile */
@media (max-width: 768px) {
    .product {
        flex-direction: column;
        align-items: center;
    }

    .product .product-images {
        width: 100%;
    }

    .product-info {
        width: 100%;
        margin-top: 20px;
    }
}
