.cat-tabs-wrapper-593e7bff {
    width: 100%;
    font-family: inherit;
    margin: 20px 0;
}

/* Horizontal scrollable navigation container */
.cat-tabs-nav-outer-593e7bff {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-bottom: 2px solid #eaeaea;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.cat-tabs-nav-outer-593e7bff::-webkit-scrollbar {
    height: 4px;
}

.cat-tabs-nav-outer-593e7bff::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.cat-tabs-nav-593e7bff {
    display: flex;
    white-space: nowrap;
    gap: 15px;
    padding-top: 5px;
}

.cat-tab-btn-593e7bff {
    background-color: #FFFF4D; /* Specific requested yellow */
    color: #111;
    border: 2px solid #111;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    border-radius: 30px;
    box-shadow: 0 4px 0 #111; /* 3D black bottom shadow */
    transition: all 0.15s ease-in-out;
    outline: none;
    transform: translateY(0);
}

.cat-tab-btn-593e7bff:hover {
    background-color: #ffffff; /* Hover background turns white */
    color: #111;
    border-color: #111;
    box-shadow: 0 4px 0 #111;
    transform: translateY(0);
}

.cat-tab-btn-593e7bff.active {
    background-color: #111;
    color: #fff;
    border-color: #111;
    box-shadow: 0 0 0 #111; /* Pressed active state */
    transform: translateY(4px);
}

/* Content Panels */
.cat-panel-593e7bff {
    display: none;
}

.cat-panel-593e7bff.active {
    display: block;
    animation: fadeIn_593e7bff 0.4s ease-in-out;
}

@keyframes fadeIn_593e7bff {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Products Grid: 5 columns on desktop, adapts gracefully */
.products-grid-593e7bff {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

@media (max-width: 1024px) {
    .products-grid-593e7bff {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid-593e7bff {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

/* Product Card design */
.product-card-593e7bff {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: box-shadow 0.3s ease;
}

.product-card-593e7bff:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.product-card-593e7bff a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.product-img-wrapper-593e7bff {
    width: 100%;
    aspect-ratio: 1/1;
    margin-bottom: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    border-radius: 6px;
}

.product-img-wrapper-593e7bff img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.product-title-593e7bff {
    font-size: 14px;
    font-weight: 500;
    margin: 8px 0;
    line-height: 1.4;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-price-593e7bff {
    font-weight: 700;
    font-size: 15px;
    color: #111;
}

/* See More Button styling */
.see-more-wrapper-593e7bff {
    text-align: center;
    margin-top: 30px;
}

.see-more-btn-593e7bff {
    display: inline-block;
    background-color: #111;
    color: #fff;
    padding: 12px 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.see-more-btn-593e7bff:hover {
    background-color: #333;
    transform: translateY(-1px);
}
