/* General Styling aur Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /* Yeh zaroori hai! */
    font-family: sans-serif;
}

body {
    background-color: #f4f4f4; /* Halka gray background */
    color: #333;
    line-height: 1.6;
}

/* Header aur Navigation Bar */
#main-header {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 15px 5%; /* Side mein thodi space */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    color: #E91E63; /* Pink ya aapke brand ka rang */
    font-size: 24px;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li a {
    text-decoration: none;
    color: #333;
    padding: 10px 15px;
    transition: color 0.3s;
}

.main-nav ul li a:hover {
    color: #E91E63;
}

.utility-icons {
    display: flex;
    align-items: center;
}

.utility-icons input[type="search"] {
    padding: 8px 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-right: 15px;
}

.cart-icon {
    font-size: 20px;
    text-decoration: none;
    color: #333;
}

/* Hero/Banner Section */
#hero-banner {
    background: url('hero-image-placeholder.jpg') no-repeat center center/cover;
    /* Yahan aap apne latest collection ki achhi si tasveer lagayenge */
    background-color: #f0f0f0; 
    height: 400px; /* Unchai (height) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text ko wazeh karne ke liye */
}

.hero-content h2 {
    font-size: 3em;
    margin-bottom: 10px;
}

.hero-content h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
}

.cta-button {
    text-decoration: none;
    background-color: #E91E63;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #C2185B;
}

/* Common Section Styling */
section {
    padding: 50px 5%;
    text-align: center;
}

section h2 {
    font-size: 2em;
    margin-bottom: 30px;
    color: #444;
}

/* Product Grid Styling */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Responsive grid! */
    gap: 30px;
    margin-top: 30px;
}

.product-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-card h3 {
    margin: 10px 0;
    font-size: 1.2em;
}

.product-card .price {
    color: #E91E63;
    font-weight: bold;
    margin-bottom: 15px;
}

.product-card .add-to-cart {
    background-color: #333;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.product-card .add-to-cart:hover {
    background-color: #E91E63;
}

/* Category Grid Styling */
.category-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.category-box {
    width: 30%; /* Teen boxes ke liye */
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.category-box a {
    text-decoration: none;
    color: #444;
    font-weight: bold;
    display: block;
    margin-top: 10px;
}

/* Footer Styling */
#main-footer {
    background-color: #333;
    color: white;
    padding: 40px 5%;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: space-around;
    max-width: 800px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.footer-links h3 {
    color: #E91E63;
    margin-bottom: 10px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li a {
    text-decoration: none;
    color: #ccc;
    display: block;
    padding: 3px 0;
}

.copyright {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 15px;
    font-size: 0.9em;
}


/* --- Mobile Responsiveness (Small Screens ke liye) --- */
@media (max-width: 768px) {
    #main-header {
        flex-direction: column; /* Mobile par top-to-bottom */
        padding: 15px;
    }

    .main-nav {
        order: 3; /* Navigation ko neechay laayein */
        margin-top: 15px;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

    .utility-icons {
        margin-top: 10px;
    }

    .utility-icons input[type="search"] {
        margin-right: 10px;
    }

    .hero-content h2 {
        font-size: 2em;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}