/* ==========================================================================
   CITRIVO Shop Page – Custom Content Blocks
   Add to child theme stylesheet or enqueue separately
   ========================================================================== */


.woocommerce-page .hero-section {
    display: none;
}

.woocommerce[data-prefix="woo_categories"] .hero-section {
    background-color: transparent;
}

/* --- Shop Intro (above product grid) --- */

.citrivo-shop-intro {
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
    padding: 2rem 1.5rem 1.5rem;
}

.citrivo-shop-intro__heading {
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a8170;
    margin: 0 0 0.75rem;
}

.citrivo-shop-intro__text {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}


/* --- L'Epicerie Callout Bar --- */

.citrivo-epicerie-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.65rem 1.5rem;
    background: #faf6eb;
    border-top: 1px solid #ede8d8;
    border-bottom: 1px solid #ede8d8;
    margin-bottom: 3rem;
}

.citrivo-epicerie-bar__icon {
    flex-shrink: 0;
    color: #8a8170;
}

.citrivo-epicerie-bar__text {
    font-size: 0.9rem;
    color: #6b6356;
}

.citrivo-epicerie-bar__text strong {
    color: #3a3530;
    font-weight: 600;
}


/* --- About Section (below product grid) --- */

.citrivo-shop-about {
    text-align: center;
    max-width: 520px;
    margin: 0 auto;
    padding: 3rem 1.5rem 2rem;
    border-top: 1px solid #ede8d8;
    margin-top: 2rem;
}

.citrivo-shop-about__heading {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #8a8170;
    margin: 0 0 0.75rem;
}

.citrivo-shop-about__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #666;
    margin: 0;
}

/**
* Single-item level awards
*/
.citrivo-product-awards {
    margin: 1rem 0 0.5rem;
}
 
.citrivo-product-awards__badges {
    display: flex;
    gap: 12px;
    align-items: center;
}
 
.citrivo-product-awards__badge {
    width: 56px;
    height: auto;
}
 
.citrivo-product-awards__text {
    font-size: 0.7rem;
    color: #8a8170;
    margin: 0.5rem 0 0;
    letter-spacing: 0.02em;
}
.citrivo-product-awards .award-name {
    font-weight: 500;
}


/* --- Responsive --- */

@media (max-width: 600px) {
    .citrivo-shop-intro {
        padding: 1.5rem 1rem 1rem;
    }

    .citrivo-epicerie-bar {
        padding: 0.6rem 1rem;
        gap: 0.4rem;
    }

    .citrivo-shop-about {
        padding: 2rem 1rem 1.5rem;
    }
}