/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a;
    color: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #ff6b6b;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
    font-size: 14px;
}

/* Sticky Header */
.sticky-header {
    position: sticky;
    top: 0;
    background-color: #333333;
    padding: 15px 0;
    z-index: 1000;
}

.sticky-header .logo {
    font-size: 24px;
    font-weight: bold;
    color: #ff6b6b;
}

.sticky-header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.sticky-header .cart-icon {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    font-size: 20px;
    cursor: pointer;
}

.sticky-header .cart-count {
    background-color: #ff6b6b;
    padding: 2px 6px;
    border-radius: 50%;
    font-size: 12px;
    position: absolute;
    top: -10px;
    right: -10px;
}

/* Hero Section */
.hero-section {
    background: url('https://via.placeholder.com/1200x400') no-repeat center center/cover;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
}

.hero-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s ease;
}

.cta-button:hover {
    background-color: #ff4c4c;
}

/* Feature Highlights */
.feature-highlights {
    padding: 60px 0;
    background-color: #2c2c2c;
}

.feature-highlights h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.feature-highlights .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    background-color: #333333;
    padding: 20px;
    border-radius: 10px;
}

.feature-card i {
    font-size: 40px;
    margin-bottom: 15px;
    color: #ff6b6b;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 16px;
    color: #cccccc;
}

/* Flash Sale Section */
.flash-sale {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.flash-sale h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 30px;
}

.countdown-timer {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 30px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #333333;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
}

.product-card h3 {
    font-size: 20px;
    margin: 10px 0;
}

.product-card .price {
    font-size: 18px;
    color: #ff6b6b;
}

.product-card .original-price {
    text-decoration: line-through;
    color: #cccccc;
    font-size: 14px;
    margin-left: 10px;
}

/* Product Categories */
.product-categories {
    padding: 60px 0;
    background-color: #2c2c2c;
}

.product-categories h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.category-card img {
    width: 100%;
    display: block;
}

.category-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-card h3 {
    color: #ffffff;
    font-size: 28px;
    text-align: center;
}

/* Customer Testimonials */
.testimonials {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #333333;
    padding: 20px;
    border-radius: 10px;
}

.testimonial-card p {
    font-size: 16px;
    color: #cccccc;
    margin-bottom: 10px;
}

.testimonial-card .author {
    font-size: 14px;
    color: #ff6b6b;
    text-align: right;
}

/* Newsletter Signup */
.newsletter {
    padding: 60px 0;
    background-color: #2c2c2c;
}

.newsletter h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
}

.newsletter p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.newsletter-form input {
    padding: 10px;
    border: none;
    border-radius: 25px;
    width: 300px;
    font-size: 16px;
}

.newsletter-form button {
    background-color: #ff6b6b;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #ff4c4c;
}

/* Footer */
.footer {
    padding: 40px 0;
    background-color: #1a1a1a;
    text-align: center;
}

.footer-links ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.social-icons a {
    color: #cccccc;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ff6b6b;
}

.copyright {
    font-size: 14px;
    color: #cccccc;
}