@import "/frontend/css/modules/header.css";
@import "/frontend/css/modules/category-bar.css";
@import "/frontend/css/modules/product.css";
@import "/frontend/css/modules/layout.css";
@import "/frontend/css/modules/image.css";

/* ======================================
🔥 GLOBAL RESET
====================================== */

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f3f3f3;
}

/* ======================================
🔥 MAIN WRAPPER
====================================== */

#mainPage {
    max-width: 1200px;
    margin: auto;
}

#productList {
    min-height: 300px;
}

/* ======================================
🔥 SECTION HEADER (FINAL FIX 🔥)
====================================== */

.section-header {
    display: inline-block;                 /* 🔥 full width हटाया */
    padding: 8px 14px;                     /* 🔥 compact */
    margin: 12px 10px 6px;                 /* 🔥 spacing control */

    background: #ffffff;
    border-radius: 20px;                   /* 🔥 pill look */

    box-shadow: 0 2px 6px rgba(0,0,0,0.06); /* 🔥 soft shadow */
    border-left: 4px solid #ff9900;        /* 🔥 highlight */
}

/* TITLE */
.section-header h2 {
    font-size: 16px;
    margin: 0;
}

/* ======================================
🔥 RESPONSIVE IMPROVEMENT
====================================== */

/* desktop पर थोड़ा centered feel */
@media (min-width: 768px) {
    .section-header {
        margin-left: 15px;
    }
}