/* ==========================================================
   TARA FASHION — CATEGORY PAGE (SAREES + SUITS)
   Clean, premium, balanced layout
   ========================================================== */


/* --------------------------
   HERO BANNER
--------------------------- */
.tf-category-hero {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 360px;
}

.tf-category-hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tf-category-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.20),
        rgba(0,0,0,0.45)
    );
}

.tf-category-hero-content {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    padding: 0 20px;
    max-width: 700px;
}

.tf-category-hero-content h1 {
    font-size: 38px;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.tf-category-hero-content p {
    font-size: 17px;
}



/* --------------------------
   CATEGORY CONTENT
--------------------------- */
.tf-category-section {
    max-width: var(--container-width);
    margin: 70px auto;
    padding: 0 20px;
}

.tf-category-title {
    font-size: 32px;
    text-align: center;
    font-family: var(--font-heading);
    margin-bottom: 40px;
}

.tf-no-products {
    text-align: center;
    color: var(--color-text-muted);
    font-size: 16px;
}



/* --------------------------
   PRODUCT GRID (shared with home)
--------------------------- */
.tf-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 32px;
}



/* --------------------------
   RESPONSIVE
--------------------------- */
@media (max-width: 768px) {
    .tf-category-hero-content h1 { font-size: 26px; }
    .tf-category-title { font-size: 26px; margin-bottom: 30px; }
}
