body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #fff8f2;
    color: #3e2723;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 3vw;
    background: #fff3e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 80px; /* Increased from 48px for bigger header logo */
    transition: height 0.2s;
}

nav a {
    margin: 0 1.2rem;
    text-decoration: none;
    color: #bf360c;
    font-weight: bold;
}

nav a:hover {
    color: #ff7043;
}

/* HERO SECTION WITH SIDE LOGO */
.hero {
    background: url('saree-hero.jpg') center/cover, linear-gradient(to right, #ffe0b2cc, #fffde7cc);
    padding: 6rem 2vw 5rem 2vw;
    color: #4e260e;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 48px;
    flex-wrap: wrap;
}

.hero-logo img {
    max-width: 300px;
    width: 20vw;
    min-width: 150px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,0,0,0.09);
    padding: 18px;
}

.hero-content {
    flex: 1 1 300px;
    min-width: 250px;
    text-align: left;
}

.hero-content h1 {
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.btn {
    background: #d84315;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: background 0.2s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #ff7043;
}

/* PRODUCT SECTION */
.shop {
    padding: 3rem 2vw;
    background: #fff8f2;
}

.shop h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(44, 19, 15, 0.06);
    padding: 1rem;
    max-width: 260px;
    text-align: center;
}

.product-card img {
    width: 100%;
    border-radius: 10px;
    height: 220px;
    object-fit: cover;
    margin-bottom: 1rem;
}

.product-card h3 {
    margin: 0.5rem 0 0.3rem 0;
    font-size: 1.15rem;
}

.product-card .price {
    display: block;
    color: #d84315;
    font-weight: bold;
    margin-top: 0.4rem;
}

/* ABOUT AND CONTACT SECTIONS */
.about, .contact {
    padding: 2.5rem 2vw;
    background: #fff3e0;
    margin-top: 1.5rem;
    border-radius: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about h2, .contact h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
}

.contact input, .contact textarea {
    padding: 0.7rem;
    border: 1px solid #eee;
    border-radius: 6px;
    font-size: 1rem;
    background: #fffbf7;
}

.contact button {
    background: #bf360c;
    color: #fff;
    border: none;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}

.contact button:hover {
    background: #ff7043;
}

.contact-info {
    text-align: center;
    margin-top: 1rem;
    color: #6d4c41;
}

.expandable-img {
    cursor: zoom-in;
    transition: 
        transform 0.3s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.3s,
        z-index 0.3s;
    z-index: 1;
    position: relative;
}

.expandable-img.expanded {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 70vw;
    max-width: 900px;
    height: auto;
    max-height: 80vh;
    transform: translate(-50%, -50%) scale(1.08);
    box-shadow: 0 8px 40px 8px rgba(0,0,0,0.47);
    background: #fff;
    border-radius: 18px;
    cursor: zoom-out;
    z-index: 3000;
    padding: 12px;
}

footer {
    text-align: center;
    padding: 1rem 0;
    background: #ffe0b2;
    color: #8d6e63;
    font-size: 1rem;
    margin-top: 2rem;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .products {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        max-width: 96vw;
    }
    .hero-flex {
        flex-direction: column;
        text-align: center;
    }
    .hero-content {
        text-align: center;
    }
}