body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    background-color: #f8f8f8;
}

.announcement-bar {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

.sticky-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

nav ul {
    list-style: none;
    display: flex;
 gap: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.cart-icon {
    font-size: 20px;
    cursor: pointer;
}

.hero-section {
    background-image: url('https://via.placeholder.com/1200');
    background-size: cover;
    background-position: center;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #000;
    color: #fff;
    padding: 15px 30px;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.feature-highlights {
    padding: 50px 20px;
    text-align: center;
}

.feature-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    max-width: 300px;
}

.feature-item img {
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.feature-item h3 {
    margin-top: 20px;
    font-size: 24px;
}

.feature-item p {
    font-size: 16px;
    color: #666;
}

.flash-sale {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.flash-sale h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.countdown-timer {
    font-size: 24px;
    margin-bottom: 30px;
}

.product-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.product-card {
    max-width: 200px;
    text-align: center;
}

.product-card img {
    width: 100%;
    height: auto;
}

.product-card h3 {
    margin-top: 10px;
    font-size: 18px;
}

.product-card .price {
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.product-card button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.product-categories {
    padding: 50px 20px;
    text-align: center;
}

.product-categories h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.categories-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.category-item {
    position: relative;
    max-width: 300px;
}

.category-item img {
    width: 100%;
    height: auto;
}

.overlay {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    width: 100%;
    padding: 20px;
    text-align: center;
    font-size: 20px;
}

.customer-testimonials {
    padding: 50px 20px;
    background-color: #fff;
    text-align: center;
}

.customer-testimonials h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.testimonials-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.testimonial-item {
    max-width: 300px;
}

.testimonial-item p {
    font-size: 16px;
    color: #666;
}

.testimonial-item .author {
    font-weight: bold;
    margin-top: 10px;
}

.newsletter-signup {
    padding: 50px 20px;
    background-color: #f8f8f8;
    text-align: center;
}

.newsletter-signup h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.newsletter-signup p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

.newsletter-signup form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-signup input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ccc;
}

.newsletter-signup button {
    background-color: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

.footer {
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
    text-align: center;
}

.footer-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-item h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-item ul {
    list-style: none;
    padding: 0;
}

.footer-item ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icons a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .feature-grid, .product-grid, .categories-grid, .testimonials-grid, .footer-grid {
        flex-direction: column;
        align-items: center;
    }
}