/* General Styles */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #212529;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* Sticky Header */
.sticky-header {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.sticky-header .logo {
    font-size: 24px;
    font-weight: bold;
}

.sticky-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.sticky-header .cart-icon {
    font-size: 24px;
}

/* Hero Section */
.hero-section {
    background-image: url('https://via.placeholder.com/1500x600');
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #212529;
    color: #fff;
    padding: 15px 30px;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #343a40;
}

/* Feature Highlights */
.feature-highlights {
    display: flex;
    justify-content: space-around;
    padding: 50px 20px;
    background-color: #fff;
}

.feature-card {
    text-align: center;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: #666;
}

/* Flash Sale Section */
.flash-sale {
    padding: 50px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.flash-sale h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.countdown-timer {
    font-size: 24px;
    margin-bottom: 30px;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.product-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.add-to-cart {
    background-color: #212529;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #343a40;
}

/* Product Categories */
.product-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 50px 20px;
    background-color: #fff;
}

.category-card {
    position: relative;
    width: 30%;
}

.category-card img {
    width: 100%;
    border-radius: 10px;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.overlay h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.overlay a {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.overlay a:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

/* Customer Testimonials */
.testimonials {
    padding: 50px 20px;
    text-align: center;
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 30%;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 15px;
}

.testimonial-card h4 {
    font-size: 18px;
    font-weight: bold;
}

/* Newsletter Signup */
.newsletter {
    padding: 50px 20px;
    text-align: center;
    background-color: #fff;
}

.newsletter h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter p {
    font-size: 16px;
    margin-bottom: 30px;
}

.newsletter form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    width: 300px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.newsletter button {
    background-color: #212529;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.newsletter button:hover {
    background-color: #343a40;
}

/* Footer */
.footer {
    padding: 50px 20px;
    text-align: center;
    background-color: #212529;
    color: #fff;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-links a {
    color: #fff;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ccc;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #fff;
    font-size: 24px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ccc;
}