/* General Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #5C4B3C;
    background-color: #F9F5F0;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #6B8E81;
    color: #F4EDE4;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    background-color: #FFFFFF;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(92, 75, 60, 0.1);
}

.logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #5C4B3C;
}

.navigation ul {
    display: flex;
    gap: 2rem;
}

.navigation a {
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.navigation a:hover {
    color: #6B8E81;
}

.cart-icon a {
    font-size: 1.5rem;
    color: #5C4B3C;
    transition: color 0.3s ease;
}

.cart-icon a:hover {
    color: #6B8E81;
}

/* Hero Section */
.hero {
    height: 80vh;
    background-image: url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 75, 60, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    background-color: #6B8E81;
    color: #FFFFFF;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    border-radius: 30px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #5A746A;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: #FFFFFF;
    color: #5C4B3C;
    border: 2px solid #5C4B3C;
}

.cta-button.secondary:hover {
    background-color: #F4EDE4;
    transform: translateY(-2px);
}

.cta-button.tertiary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.cta-button.tertiary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: #FFFFFF;
}

.feature {
    padding: 2rem;
    background-color: #F4EDE4;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(92, 75, 60, 0.1);
}

.feature img {
    width: 60px;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #5C4B3C;
}

/* Flash Sale Section */
.flash-sale {
    padding: 5rem 2rem;
    background-color: #FFFFFF;
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #5C4B3C;
    margin-bottom: 1rem;
}

.countdown {
    font-size: 2rem;
    font-weight: 600;
    color: #6B8E81;
    font-family: 'Montserrat', sans-serif;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: #F4EDE4;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(92, 75, 60, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.price {
    font-weight: 600;
    color: #6B8E81;
    margin: 0.5rem 0 1rem;
}

.original-price {
    color: #5C4B3C;
    text-decoration: line-through;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Categories Section */
.categories {
    padding: 5rem 2rem;
    background-color: #F9F5F0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.categories h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5C4B3C;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(92, 75, 60, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #FFFFFF;
    transition: background 0.3s ease;
}

.category:hover .category-overlay {
    background: rgba(92, 75, 60, 0.3);
}

.category-overlay h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 2rem;
    background-color: #FFFFFF;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #5C4B3C;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial {
    background-color: #F4EDE4;
    padding: 2rem;
    border-radius: 15px;
    font-style: italic;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial h4 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    color: #6B8E81;
}

/* Newsletter Section */
.newsletter {
    padding: 5rem 2rem;
    background-color: #6B8E81;
    text-align: center;
    color: #FFFFFF;
}

.newsletter h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    width: 70%;
}

.newsletter-form button {
    width: 30%;
}

/* Footer */
.footer {
    background-color: #5C4B3C;
    color: #F4EDE4;
    padding: 4rem 2rem 1rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #FFFFFF;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #6B8E81;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    font-size: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(244, 237, 228, 0.2);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        gap: 1rem;
    }
    .navigation ul {
        gap: 1rem;
        flex-direction: column;
        text-align: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .newsletter-form {
        flex-direction: column;
        align-items: center;
    }
    .newsletter-form input, .newsletter-form button {
        width: 100%;
    }
}