@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #dceefc;
    color: #333;
    line-height: 1.6;
}
header {
    background-color: #ff6600;
    color: #dceefc; 
    padding: 1rem;
    text-align: center;
}
header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

nav {
    margin-top: 1rem;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 0.8rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #cc5200;
}

.hero {
    overflow: hidden;
    width: 100%;
    height: 500px;
    position: relative;
}

.hero-slider {
    display: flex;
    animation: slide 15s infinite;
}

.hero-slide {
    min-width: 100%;
    transition: transform 0.5s ease-in-out;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
}

.hero-content h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.hero-content .btn {
    padding: 10px 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.hero-content .btn:hover {
    background-color: #cc5200;
}

@keyframes slide {
    0%, 20% { transform: translateX(0); }
    25%, 45% { transform: translateX(-100%); }
    50%, 70% { transform: translateX(-200%); }
    75%, 100% { transform: translateX(-300%); }
}

.promotional-banner {
    background-color: #fff3cd;
    padding: 20px;
    text-align: center;
    font-weight: 500;
}

.featured-products {
    padding: 20px;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product {
    background-color: #f9f9f9;  /* Lighter background for contrast */
    border-radius: 8px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    width: calc(33.33% - 20px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.product img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
}

.product h3 {
    font-size: 1.5rem;
    margin: 10px 0;
    color: #333;
}

.product p {
    font-size: 1rem;
    color: #666;
}

.customer-reviews {
    padding: 20px;
    background-color: #f9f9f9;
}

.reviews-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

blockquote {
    background-color: #fff;
    border-left: 5px solid #ff6600;
    padding: 10px;
    margin: 10px 0;
    width: 80%;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-style: italic;
}

.newsletter, .social-media {
    padding: 20px;
    text-align: center;
}

.social-media a {
    margin: 0 10px;
    color: #ff6600;
    text-decoration: none;
}

footer {
    text-align: center;
    padding: 1rem;
    background-color: #333;
    color: #dceefc;
}

#cart-items {
    margin-top: 20px;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cart-item-image {
    width: 100px;
    height: auto;
    border-radius: 8px;
    margin-right: 15px;
}

.cart-item-details {
    flex-grow: 1;
}

.remove-btn, .checkout button, .add-to-cart-btn {
    background-color: #ff6600;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s;
}
button[type='submit']{
    background-color: #ff6600;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s;
    color: white;
    border: none;
    padding: 2px;
}
.remove-btn:hover, .checkout button:hover, .add-to-cart-btn:hover {
    background-color: #cc5200;
}

@media (max-width: 768px) {
    .product {
        width: calc(50% - 20px);
    }
}

@media (max-width: 480px) {
    .product {
        width: 100%;
    }

    header h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}
