/* GENERAL - START */
.archive-section {
    margin-bottom: 20px;
    padding: 0;
}
/* .no-products-message - Defined in product-grid.css */
/* GENERAL - END */

/* CATEGORY INFO - START */
#category-info .full-width-background {
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    background: var(--surface-2);
}
.category-inner-container {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    gap: 20px;
    padding: 26px 0;
}
.category-text-area {
    flex: 1;
    position: relative;
    z-index: 2;
}
.woocommerce .woocommerce-breadcrumb {
    margin: 0;
}
.category-breadcrumbs {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.category-title {
    font-size: 28px;
    margin: 0 0 10px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
}
.category-description {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-body);
}
.image-area {
    width: 300px;
    flex-shrink: 0;
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}
.image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
@media (max-width: 768px) {
    .category-inner-container {
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
    }
    .image-area {
        display: none; /* Hide the image area completely on mobile */
    }
    .category-text-area {
        padding: 0;
        width: 100%;
    }
    /* No need for overlay since we're not showing the image */
    .category-inner-container::before {
        display: none;
    }
    /* Keep text color as black since we're not using the image as background */
    .category-breadcrumbs,
    .category-breadcrumbs a,
    .category-breadcrumbs span,
    .category-title,
    .category-description {
        color: var(--black);
    }
}
/* CATEGORY INFO - END */
