* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fefefe;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo img {
    height: 70px;  /* Adjust height as needed */
    width: auto;   /* Maintains aspect ratio */
    max-height: 70px;
    object-fit: contain;
}

/* If you need to adjust the logo container */
.logo {
    display: flex;
    align-items: center;
}
/* Header */
header {
    background: linear-gradient(135deg, #f8f4f0 0%, #f2ede7 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 600;
    color: #8b6f47;
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-links a:hover, .nav-links a.active {
    color: #8b6f47;
}
/* Hero Section */
.hero {
    background: linear-gradient(135deg, #faf7f2 0%, #f0e6d6 100%);
    padding: 6rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero p {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 111, 71, 0.4);
}

/* Page Header (Products Page) */
.page-header {
    background: linear-gradient(135deg, #faf7f2 0%, #f0e6d6 100%);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Filter Section */
.filter-section {
    background: white;
    padding: 2rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.filter-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.search-box {
    padding: 0.8rem 1.5rem;
    border: 2px solid #f0f0f0;
    border-radius: 25px;
    font-size: 1rem;
    width: 300px;
    transition: border-color 0.3s ease;
}

.search-box:focus {
    outline: none;
    border-color: #8b6f47;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: #666;
}

.filter-btn:hover, .filter-btn.active {
    background: #8b6f47;
    color: white;
    border-color: #8b6f47;
}

/* Featured Products & Products Section */
.featured-products, .products-section {
    padding: 6rem 0;
    background: white;
}

.products-section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 500;
    color: #8b6f47;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    opacity: 1;
    transform: scale(1);
}

.product-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.product-card.fade-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.product-image img{
    width: 200px;
    height: 200px;
    border-radius: 15px;
    margin: 0 auto 1.5rem;
    object-fit: cover;
    display: block;
}


.product-card h3 {
    font-size: 1.4rem;
    color: #8b6f47;
    margin-bottom: 1rem;
    font-weight: 500;
}

.product-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

.contact-btn {
    background: linear-gradient(135deg, #d4a574 0%, #8b6f47 100%);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.3);
}

.category-badge {
    display: inline-block;
    background: #f0e6d6;
    color: #8b6f47;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

/* No Results */
.no-results {
    text-align: center;
    padding: 4rem 0;
    display: none;
}

.no-results h3 {
    color: #8b6f47;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.no-results p {
    color: #666;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #faf7f2 0%, #f2ede7 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: #8b6f47;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.about-text p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-image {
     position: relative !important;
    max-width: 300px !important;
    max-height: 200px !important;
}

/* Footer */
footer {
    background: #8b6f47;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-section p, .footer-section a {
    color: #f0e6d6;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    background: rgba(255,255,255,0.2);
    padding: 0.8rem;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: rgba(255,255,255,0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .filter-controls {
        flex-direction: column;
    }

    .search-box {
        width: 100%;
        max-width: 400px;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-title {
        font-size: 2rem;
    }
}