.product_catalog_area {
    position: relative;
    background-image:
        linear-gradient(
            rgba(0,0,0,.85),
            rgba(0,0,0,.92)
        ),
        url('../../assets/images/bg-joemen-red.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.product_catalog_area::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -150px;
    top: -150px;
    background:
        radial-gradient(
            circle,
            rgba(255,60,60,.25),
            transparent 70%
        );

    filter: blur(120px);
}

.product_catalog_area::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    left: -100px;
    bottom: -100px;
    background:
        radial-gradient(
            circle,
            rgba(255,60,60,.15),
            transparent 70%
        );

    filter: blur(120px);
}

.catalog-header {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-top: 50px;
    margin-bottom: 20px;
}

.catalog-header h2 {
    font-size: 48px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.catalog-header p {
    color: #888;
    max-width: 500px;
    line-height: 1.8;
}

.catalog-nav {
    display: flex;
    gap: 15px;
}

.catalog-nav button {
    width: 55px;
    height: 55px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.03);
    color: #fff;
    border-radius: 50%;
    transition: all .3s ease;
    cursor: pointer;
}

.catalog-nav button:hover {
    background: #ff3c3c;
    border-color: #ff3c3c;
    transform: translateY(-3px);
    box-shadow:
    0 10px 25px rgba(255,60,60,.35);
}

.product-track-wrapper {
    overflow: hidden;
}

#product-track {
    display: flex;
    gap: 24px;
    transition: transform .5s ease;
}

.single_product {
    min-width: calc(25% - 18px);
    background: linear-gradient(
        180deg,
        #1b1b1b,
        #121212
    );
    margin-bottom: 40px;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 24px;
    overflow: hidden;
    transition: .35s ease;
    position: relative;
}

.single_product::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    radial-gradient(
        circle at top,
        rgba(255,60,60,.15),
        transparent 60%
    );
    opacity: 0;
    transition: .4s;
}

.single_product:hover {
    transform:
    translateY(-10px);
    border-color:
    rgba(255,60,60,.4);
    box-shadow:
    0 20px 40px rgba(0,0,0,.4);
}

.single_product:hover::before {
    opacity: 1;
}

.product_image {
    height: 280px;
    overflow: hidden;
    bottom: 20px;
}

.product_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.product_image:hover img {
    transform: scale(1.1);
}

.product_content {
    padding: 20px;
}

.product_name {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.product_price {
    font-size: 18px;
    font-weight: 600;
    color: #ff3c3c;
}

.product_description {
    color: #9a9a9a;
    line-height: 1.8;
    font-size: 14px;
    min-height: 80px;
}

.product_footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top:
    1px solid rgba(255,255,255,.08);
}

.product_btn {
    padding: 10px 18px;
    background: #ff3c3c;
    color: #fff;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.product_btn:hover {
    color: #fff;
    background: #ff1f1f;
    transform: translateY(-2px);
}

.product_badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff3c3c;
    color: white;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    z-index: 2;
}

@media(max-width:768px){
    .catalog-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }
    
    .catalog-header h2{
        font-size:34px;
    }

    .single_product{
        min-width:calc(50% - 12px);
    }

    .product_image{
        height:220px;
    }

}

@media(max-width:992px){
    .single_product{
        min-width:calc(33.33% - 18px);
    }
}