    body {
            font-family: 'Montserrat', sans-serif;
            background: #fafafa;
        }

        /* ── Hero Banner ── */
        .category-hero {
            position: relative;
            width: 100%;
            height: 320px;
            overflow: hidden;
            background: #1a1a1a;
        }
        .category-hero img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
        }
        .category-hero .hero-text {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: #fff;
            padding: 0 20px;
        }
        .category-hero h1 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            letter-spacing: 2px;
            margin-bottom: 10px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.5);
        }
        .category-hero p {
            font-size: clamp(0.85rem, 2vw, 1.05rem);
            max-width: 600px;
            opacity: 0.9;
            text-shadow: 0 1px 4px rgba(0,0,0,0.4);
        }

        /* ── Breadcrumb ── */
        .breadcrumb-wrap {
            background: #fff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
        }
        .breadcrumb-item a {
            color: #8B6914;
            text-decoration: none;
        }
        .breadcrumb-item.active {
            color: #555;
        }

        /* ── Section Title ── */
        .section-heading {
            text-align: center;
            margin: 50px 0 35px;
        }
        .section-heading h2 {
            font-family: 'Cormorant Garamond', serif;
            font-size: clamp(1.8rem, 4vw, 2.8rem);
            font-weight: 700;
            color: #1a1a1a;
        }
        .section-heading .divider {
            width: 70px;
            height: 3px;
            background: linear-gradient(90deg, #8B6914, #c9a84c);
            margin: 12px auto 15px;
            border-radius: 2px;
        }
        .section-heading p {
            color: #666;
            font-size: 0.95rem;
            max-width: 550px;
            margin: 0 auto;
        }

        /* ── Subcategory Cards ── */
        .sub-card {
            border: none;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
            background: #fff;
            height: 100%;
        }
        .sub-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
            color: inherit;
        }
        .sub-card .img-wrap {
    position: relative;
    overflow: hidden;
    background: #fff;
}
.sub-card .img-wrap img {
    width: 100%;
    height: auto;          /* Puri image dikhegi */
    max-height: 300px;     /* Zyada badi bhi nahi hogi */
    object-fit: contain;   /* Cover ki jagah contain - crop nahi karega */
    transition: transform 0.4s ease;
    padding: 10px;         /* Thoda space */
}
        .sub-card:hover .img-wrap img {
            transform: scale(1.06);
        }
        .sub-card .img-wrap .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.35) 0%, transparent 60%);
        }
        .sub-card .card-body {
            padding: 18px 20px;
            text-align: center;
        }
        .sub-card h3 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.35rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 8px;
        }
        .sub-card p {
            font-size: 0.85rem;
            color: #777;
            margin-bottom: 12px;
            line-height: 1.5;
        }
        .sub-card .btn-explore {
            display: inline-block;
            padding: 7px 22px;
            border: 1.5px solid #8B6914;
            color: #8B6914;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: all 0.3s;
            text-decoration: none;
        }
        .sub-card:hover .btn-explore {
            background: #8B6914;
            color: #fff;
        }

        /* ── Empty State ── */
        .empty-state {
            text-align: center;
            padding: 80px 20px;
            color: #999;
        }
        .empty-state i {
            font-size: 3rem;
            margin-bottom: 15px;
            color: #ddd;
        }
        .empty-state h4 {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            color: #555;
        }