/* Banner Base */
.bloomsha-banner {
    background: #f6f6f6;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bloomsha-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 18px 18px;
    opacity: 0.4;
    pointer-events: none;
}

/* Text */
.banner-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
}

.banner-subtext {
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 520px;
    margin: 20px 0 30px;
}

/* Button */
/* .bloomsha-banner .btn-primary {
  background-color: #fa9538;
  border-color: #fa9538;
  padding: 14px 34px;
  border-radius: 50px;
} */

/* Collage Area */
.banner-collage {
    position: relative;
    height: 430px;
}

/* Category Cards */
.cat-category-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 180px;
    transition: transform 0.3s ease;
}

.cat-category-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* .category-card span {
  display: block;
  padding: 12px;
  font-weight: 600;
  text-align: center;
  color: #111827;
  background: #fff;
} */

/* Hover effect */
.cat-category-card:hover {
    transform: translateY(-6px);
}

/* Card Positions */
.card-1 {
    top: 0;
    left: 60px;
}

.card-2 {
    top: 110px;
    left: 260px;
}

.card-3 {
    top: 230px;
    left: 100px;
}

.card-4 {
    top: 80px;
    right: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .banner-collage {
        display: none;
    }

    .banner-title {
        font-size: 2.2rem;
    }
}


.read-more-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #f24e4e, #ff7a6c);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(242, 78, 78, 0.35);
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #e84444, #ff6a5a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(242, 78, 78, 0.45);
}


.explore-category-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #f24e4e, #ff7a6c);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 12px 30px rgba(242, 78, 78, 0.35);
}

.explore-category-btn:hover {
    background: linear-gradient(135deg, #e84444, #ff6a5a);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(242, 78, 78, 0.45);
}

/* ========= */
.browse-categories-section .section-subtitle {
    margin-top: -10px;
    margin-bottom: 30px;
}

.browse-category-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.browse-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: #e0e0e0;
}

.category-icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
}

.category-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-fallback-icon {
    font-size: 24px;
    color: #fc545a;
}

.category-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-left: 15px;
}

.category-card-desc {
    line-height: 1.5;
    min-height: 48px;
    /* Approx 2 lines */
}

.browse-category-card:hover .read-more-link {
    transform: translateX(5px);
}

.read-more-link {
    transition: transform 0.3s ease;
}

.cat-images-pile {
    display: flex;
    align-items: center;
    margin-left: 10px;
}

.pile-img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.pile-img:first-child {
    margin-left: 0;
}

.pile-img:hover {
    transform: scale(1.1);
    z-index: 5;
}

.pile-more {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: #f3f4f6;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    color: #6b7280;
    margin-left: -12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}