/* style.css */

body {
    font-family: 'Cabin', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: auto;
    overflow: hidden;
    padding: 0 20px;
}

header {
    background: #e74c3c; /* Festive Red */
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: 3px solid #c0392b;
}

header h1 {
    text-align: center;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

header .tagline {
    text-align: center;
    font-style: italic;
    font-size: 1.1em;
}

#product {
    padding: 20px 0;
}

#product .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.product-image {
    width: 45%;
    text-align: center;
}

.product-image img {
    max-width: 100%;
    height: auto;
    border: 5px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.product-details {
    width: 45%;
}

.product-details h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.product-details .price {
    font-size: 1.5em;
    color: #e74c3c;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-details p {
    margin-bottom: 15px;
}

.shipping-info {
    margin-top: 20px;
    padding: 15px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
}

.shipping-info h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: #27ae60; /* Success Green */
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2em;
    font-weight: bold;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background: #219651;
}

#about {
    background: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

#about h2 {
    font-size: 2em;
    margin-bottom: 15px;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

footer {
    text-align: center;
    padding: 20px;
    background: #222;
    color: #fff;
    font-size: 0.9em;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    #product .container {
        flex-direction: column;
    }

    .product-image, .product-details {
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .product-image img {
        max-width: 80%;
    }

    header h1 {
        font-size: 1.8em;
    }

    header .tagline {
        font-size: 1em;
    }
}