/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
}

a {
    color: #1DBF73;
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #17A65E;
}

/* Product Details Section (Slider) */
.product-details {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
    background-color: #fff;
}

.carousel {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.carousel .slide {
    display: none;
    text-align: center;
}

.carousel .slide img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

.carousel .slide.active {
    display: block;
}

/* Footer (Contact Section) */
footer {
    background-color: #1DBF73;
    color: #fff;
    padding: 30px 20px;
    text-align: center;
    border-top: 5px solid #17A65E;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.contact-info, .newsletter {
    max-width: 400px;
}

.newsletter form {
    display: flex;
    flex-direction: column;
}

.newsletter input[type="email"] {
    padding: 15px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    background-color: #f4f4f4;
    color: #333;
}

.newsletter button {
    padding: 15px;
    background-color: #17A65E;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter button:hover {
    background-color: #149357;
}

.legal {
    margin-top: 20px;
}

.legal p a {
    color: #f4f4f4;
    text-decoration: underline;
}

.legal p a:hover {
    text-decoration: none;
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .product-details {
        padding: 30px 10px;
    }

    .footer-content {
        text-align: center;
    }

    .contact-info, .newsletter {
        width: 100%;
    }
}
