.product-catalog-section {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 20px;
}

.product-catalog-section h2 {
    margin: 0;
}

.product-items {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* color-mix(in srgb, var(--glow-color) */

.product-item {
    height: 120px;
    width: 100%;
    transition: 0.3s;
    display: flex;
    background: #181818;
    border-bottom: 4px solid #222222;
    position: relative;
}

.product-item::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background-color: var(--glow-color);
    transition: width 0.4s ease-in-out;
}

.product-item:hover::after {
    width: 100%;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--glow-color), 0 0 50px color-mix(in srgb, var(--glow-color) 50%, transparent);
}

.product-info {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 100%;
    width: 100%;
}

.pi-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: 180px;
}

.pi-tags span {
    padding: 2px 4px;
    background: #ffffff;
    color: #181818;
    font-size: xx-small;
    font-weight: bold;
}

.pi-detalic {
    display: flex;
    align-items: center;
    gap: 20px;
}

.pi-detalic img {
    height: 90px;
    width: 90px;
    filter: drop-shadow(0 0 15px color-mix(in srgb, var(--glow-color) 80%, transparent));
}

.pd-rating {
    display: flex;
    gap: 5px;
}

.pd-rating i {
    font-size: 24px;
    color: #fac029;
}

@media (min-width: 360px) and (max-width: 575px) {
    .product-info {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .pi-column .pi-detalic {
        gap: 0;
        flex-direction: column;
        padding: 10px 0;
    }

    .pi-detalic img {
        height: 50px;
        width: 50px;
    }
    .product-item {
        height: auto;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .template main {
        max-width: 767px;
    }
    .pi-column .pi-detalic {
        gap: 0;
        flex-direction: column;
        padding: 10px 0;
    }
    .product-item {
        height: auto;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .product-info {
        padding-right: 25px;
        justify-content: space-evenly;
    }

    .pi-column .pi-detalic {
        flex-direction: column;
    }

    .pi-detalic img {
        height: 75px;
        width: 75px;
    }
    .product-item {
        height: auto;
    }
}

@media (min-width: 992px) and (max-width: 1024px) {
    .product-info {
        padding-right: 25px;
        justify-content: space-evenly;
    }

    .pi-detalic img {
        height: 75px;
        width: 75px;
    }
}

@media (max-width: 375px) {
    .product-info {
        padding-right: 25px;
        justify-content: end;
    }

    .pi-column .pi-detalic {
        flex-direction: column;
    }

    .pi-detalic img {
        height: 50px;
        width: 50px;
    }
}
