/* General Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/* Sticky Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
}

.nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav ul li a {
    font-weight: 700;
    color: #333;
}

.cart-icon a {
    font-size: 18px;
    color: #333;
}

.cart-count {
    background-color: #333;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* Hero Section */
.hero {
    background-image: url('https://via.placeholder.com/1200x400');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #c69f73;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #b38a62;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.feature-card {
    text-align: center;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: #777;
}

/* Flash Sale Section */
.flash-sale {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.flash-sale h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.countdown-timer {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    text-align: center;
    padding: 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

.product-card img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 10px;
}

.product-card h4 {
    font-size: 18px;
    margin: 10px 0;
}

.product-card p {
    font-size: 16px;
    color: #777;
}

.product-card button {
    background-color: #c69f73;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.product-card button:hover {
    background-color: #b38a62;
}

/* Product Categories */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 20px;
    background-color: #f8f8f8;
}

.category-card {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 10px;
}

.category-card img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 10px;
}

.category-card h3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
}

.category-card a {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #c69f73;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.category-card a:hover {
    background-color: #b38a62;
}

/* Testimonials */
.testimonials {
    text-align: center;
    padding: 40px 20px;
    background-color: #fff;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #f8f8f8;
    padding: 20px;
    border-radius: 10px;
    max-width: 300px;
}

.testimonial-card p {
    font-size: 16px;
    color: #777;
}

/* Newsletter */
.newsletter {
    text-align: center;
    padding: 40px 20px;
    background-color: #333;
    color: #fff;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 20px;
}

.newsletter-form input {
    padding: 10px;
    width: 300px;
    border: none;
    border-radius: 5px;
    margin-right: 10px;
}

.newsletter-form button {
    background-color: #c69f73;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #b38a62;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background-color: #222;
    color: #fff;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
}

.social-icons a {
    margin: 0 10px;
    color: #fff;
}

.social-icons a:hover {
    color: #c69f73;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .feature-highlights, .product-categories, .testimonial-grid {
        flex-direction: column;
        align-items: center;
    }

    .product-grid {
        flex-direction: column;
    }

    .hero-content h2 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .cta-button {
        font-size: 14px;
    }

    .newsletter-form input {
        width: 100%;
        margin-bottom: 10px;
    }

    .newsletter-form button {
        width: 100%;
    }
}