.product-catalog {
    padding: 50px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
}

.product-item {
    width: 285px;
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.product-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.product-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 15px 0 10px;
}

.product-description {
    font-size: 0.9rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.tag {
    background-color: #43434d;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 0.85rem;
    color: #ff9800;
}

.tag span:first-child {
    font-weight: bold;
}

.product-price {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.redirect-link {
    background-color: #2b2a37;
    color: #ff9800;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: background-color 0.3s ease;
}

.redirect-link:hover {
    background-color: #795f5e;
}

@media (max-width: 768px) {
    .product-item {
        width: 100%;
        padding: 15px;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .redirect-link {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .product-item {
        width: 100%;
        padding: 10px;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .redirect-link {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
}
