/* General Styles */
body {
    margin: 0;
    font-family: 'Lato', sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Announcement Bar */
.announcement-bar {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-size: 14px;
}

/* Sticky Header */
.sticky-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #000;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.cart-icon {
    font-size: 20px;
    cursor: pointer;
}

.cart-count {
    background: #ff6347;
    color: #fff;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
}

/* Hero Section */
.hero-section {
    background: url('https://via.placeholder.com/1200x600') no-repeat center center/cover;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-button {
    background: #ff6347;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #e5533a;
}

/* Feature Highlights */
.feature-highlights {
    padding: 50px 20px;
    text-align: center;
    background: #fff;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.feature-item {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
}

/* Flash Sale */
.flash-sale {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}

.countdown-timer {
    font-size: 24px;
    font-weight: 700;
    color: #000;
    margin: 20px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.price {
    font-size: 18px;
    font-weight: 700;
    color: #ff6347;
}

.original-price {
    text-decoration: line-through;
    color: #999;
    margin-left: 10px;
}

/* Product Categories */
.product-categories {
    padding: 50px 20px;
    text-align: center;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.category-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.category-item img {
    width: 100%;
    height: auto;
    display: block;
}

.overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 5px;
}

/* Testimonials */
.testimonials {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.testimonial-slider {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.testimonial-item {
    background: #f4f4f4;
    padding: 20px;
    border-radius: 10px;
    width: 300px;
}

.customer-name {
    font-style: italic;
    color: #888;
}

/* Newsletter */
.newsletter {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}

form {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

form input {
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 25px;
}

form button {
    background: #000;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

/* Footer */
.footer {
    padding: 50px 20px;
    background: #000;
    color: #fff;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.copyright {
    margin-top: 20px;
    font-size: 14px;
}