.cat-showcase-wrapper-d151561d {
    display: flex;
    gap: 30px;
    align-items: stretch;
}

.cat-showcase-highlight-d151561d {
    position: relative;
    width: 320px;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;
}

.cat-showcase-highlight-d151561d img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.cat-showcase-overlay-d151561d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.cat-showcase-title-d151561d {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.4s ease, bottom 0.4s ease;
}

.cat-showcase-btn-d151561d {
    background: #222;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transform: translateY(20px);
    transition: transform 0.4s ease, background 0.3s ease;
}

.cat-showcase-btn-d151561d:hover {
    background: #444;
    color: #fff;
}

.cat-showcase-highlight-d151561d:hover .cat-showcase-overlay-d151561d {
    opacity: 1;
}

.cat-showcase-highlight-d151561d:hover img {
    transform: scale(1.05);
}

.cat-showcase-highlight-d151561d:hover .cat-showcase-btn-d151561d {
    transform: translateY(0);
}

.cat-showcase-highlight-d151561d:hover .cat-showcase-title-d151561d {
    transform: translateY(-5px);
}

.cat-showcase-products-d151561d {
    flex: 1;
    min-width: 0;
}

@media (max-width: 768px) {
    .cat-showcase-wrapper-d151561d {
        flex-direction: column;
    }
    
    .cat-showcase-highlight-d151561d {
        width: 100%;
        height: 400px;
    }
}