/* Reset & Base */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* NAMING CONVENTION: 
   Prefix: bljh (Balaji Handloom)
   Rule: No exact English words, removed vowels to look misspelled.
*/

/* Header & Nav */
.bljh-hdr-wrap {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bljh-nav-cntnr {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bljh-logo-txt {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d35400; /* Deep Saffron/Textile color */
    text-decoration: none;
}

.bljh-nav-lnks {
    display: flex;
    gap: 20px;
}

.bljh-nav-itm {
    text-decoration: none;
    color: #555;
    font-weight: 500;
}

.bljh-nav-itm:hover {
    color: #d35400;
}

/* Hero Section */
.bljh-hro-sctn {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('path/to/shop-image.jpg'); /* Replace with real shop image */
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.bljh-hro-ttl {
    font-size: 3rem;
    margin-bottom: 10px;
}

.bljh-hro-sub {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.bljh-cta-btn {
    background-color: #d35400;
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* Content Sections */
.bljh-main-cntent {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.bljh-sctn-ttl {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    color: #2c3e50;
}

/* Grid for Products */
.bljh-prdct-grd {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.bljh-prdct-crd {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.bljh-prdct-crd:hover {
    transform: translateY(-5px);
}

.bljh-img-hldr {
    width: 100%;
    height: 250px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
}

.bljh-crd-dtls {
    padding: 20px;
}

/* Footer */
.bljh-ftr-wrap {
    background-color: #2c3e50;
    color: white;
    padding: 40px 20px;
    margin-top: 60px;
}

.bljh-ftr-cntnr {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.bljh-ftr-col h3 {
    border-bottom: 2px solid #d35400;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.bljh-ftr-lnk {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
}

.bljh-cprght {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* CONTACT PAGE SPECIFIC */

.bljh-cntct-grd {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .bljh-cntct-grd {
        grid-template-columns: 1fr 1fr;
    }
}

.bljh-info-bx {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.bljh-addrss-rw {
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.bljh-addrss-rw:last-child {
    border-bottom: none;
}

.bljh-lbl-txt {
    font-weight: bold;
    color: #d35400;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.bljh-dtl-txt {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}

/* Map Placeholder */
.bljh-mp-frm {
    width: 100%;
    height: 100%;
    min-height: 300px;
    background-color: #e9ecef;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    border: 1px solid #ddd;
}

/* ... (Keep your previous CSS from Serial ID 137-925-583/584) ... */

/* --- UPDATE THIS SECTION --- */

/* Hero Section Update */
.bljh-hro-sctn {
    /* Linking to the specific hero image */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('bljh-hero.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

/* ... */

/* --- ADD THIS NEW CLASS FOR IMAGES --- */
.bljh-crd-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image covers the box without stretching */
    display: block;
}

/* Update the image holder to remove background color since we have real images now */
.bljh-img-hldr {
    width: 100%;
    height: 250px;
    background-color: #f0f0f0; /* Fallback color */
    overflow: hidden;
}