.wp-block-matten24-shop-overview {
    /* Main container styling if needed */
}

/* Overview Grid */
.matten24-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.matten24-category-item {
    border: 1px solid #e1e1e1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
    border-radius: 4px;
}

.matten24-category-title {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.matten24-category-image {
    width: 100%;
    margin-bottom: 1rem;
}

.matten24-category-image img {
    width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 4px;
}

.matten24-category-desc {
    margin-bottom: 1.5rem;
    flex-grow: 1;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.matten24-btn {
    display: inline-block;
    background-color: #a70a10;
    color: #fff !important;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0; /* Modern clean look */
    font-weight: 600;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
    text-align: center;
}

.matten24-btn:hover,
.matten24-btn:focus {
    background-color: #82080d;
    color: #fff !important;
    text-decoration: none;
}

/* Category Detail View */
.matten24-category-header {
    margin-bottom: 3rem;
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.matten24-category-header img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.matten24-category-title-overlay {
    position: absolute;
    color: #a70a10;
    z-index: 10;
    text-align: center;
    margin: 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 4px;
}

.matten24-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .matten24-product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .matten24-product-grid {
        grid-template-columns: 1fr;
    }
}

.matten24-product-item {
    border: 1px solid #f1f1f1;
    padding: 1rem;
    text-align: center;
    transition: box-shadow 0.2s;
    display: flex;
    flex-direction: column;
}

.matten24-product-item:hover {
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.matten24-product-item a {
    text-decoration: none;
    color: inherit;
}

.matten24-product-item img {
    max-width: 100%;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.matten24-product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    flex-grow: 1;
}

.matten24-product-price-wrapper {
    margin-bottom: 1rem;
}

.matten24-product-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #a70a10;
    margin-bottom: 0.25rem;
}

.matten24-product-tax-shipping {
    font-size: 0.8rem;
    color: #777;
    line-height: 1.2;
}

.matten24-product-btn {
    width: 100%;
    margin-top: auto;
    box-sizing: border-box;
}

.matten24-category-detailed-desc {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}
