/* ===============================
   Section Title Wrapper
================================ */

.shafa-section-title {
    /* max-width: 800px; */
    margin: 1em auto;
    position: relative;
    padding: 1em 0;
    text-align: right;
}

.shafa-section-title::after {
    content: '';
    position: absolute;
    right: -.05rem;
    top: 0;
    width: 100%;
    height: 3px;
    /* background-color: var(--bg-accent); */
    border-radius: 5px;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
    background: linear-gradient(to left,
            transparent,
            var(--bg-accent),
            transparent);
}

.shafa-section-title h3 {
    font-size: 3em;
    /* font-weight: 700; */
    margin: 0;
    font-family: var(--font-sde);
    text-shadow: 0px 5px 10px #000000;
}


/* ===============================
   Shared Shop Sections Wrapper
================================ */

.shafa-categories,
.shafa-most-sales,
.shafa-discounted-products,
.shafa-latest-products {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 1rem;
}


/* ===============================
   Grids
================================ */

.shafa-categories__grid,
.shafa-most-sales__grid,
.shafa-discounted-products__grid,
.shafa-latest-products__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
}



/* ===============================
   Category Card
================================ */

.shafa-category-card,
.shafa-product-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.25rem 1rem;
    text-align: center;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
    font-family: var(--font-zba);
}

.shafa-category-card:hover,
.shafa-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.shafa-category-card__image img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.shafa-category-card__title {
    font-family: var(--font-tna);
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.25rem 0;
}

.shafa-category-card__count {
    font-size: 0.8rem;
    color: #777;
}


/* ===============================
   Product Card (Most Sales + Discounted)
================================ */


.shafa-product-card__image {
    position: relative;
}

.shafa-product-card__image img {
    display: block;
    width: 120px;
    height: 120px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    object-fit: cover;
}

.shafa-product-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-family: var(--font-tna);
}



/* ===============================
   Discounted Products Extras
================================ */

/* Sale badge */
.shafa-sale-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background-color: #d32f2f;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    line-height: 1;
}


/* Prices */
.shafa-product-card__prices {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2e7d32;
    line-height: 1.4;

}

.shafa-product-card__prices>div {
    display: flex;
    flex-direction: column;
}

.shafa-product-card__prices .woocommerce-Price-amount.amount,
.shafa-product-card__prices .woocommerce-Price-amount .woocommerce-Price-currencySymbol {
    font-size: 0.8em;
    margin-inline-start: 2px;
    font-family: var(--font-zba);

}

.shafa-product-card__prices .price-regular {
    font-size: 0.8rem;
    color: #999;
    text-decoration: line-through;

}

.shafa-product-card__prices .price-sale {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d32f2f;
}

/* Optional visual distinction */
.shafa-product-card--sale {
    border: 5px double rgba(211, 47, 47, 0.35);
}


/* ===============================
   Latest Products Extras
================================ */

.shafa-product-card--latest {
    border: 2px solid rgba(0, 0, 0, 0.06);
}


/* ===============================
   Responsive
================================ */

@media (max-width: 768px) {

    .shafa-categories__grid,
    .shafa-most-sales__grid,
    .shafa-discounted-products__grid,
    .shafa-latest-products__grid {
        gap: 1rem;
    }

    .shafa-category-card,
    .shafa-product-card {
        padding: 1rem 0.75rem;
    }

    .shafa-category-card__image img,
    .shafa-product-card__image img {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {

    .shafa-category-card__image img,
    .shafa-product-card__image img {
        width: 90px;
        height: 90px;
    }
}