.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px;
    border-radius: 5px;
    font-size: 12px;
}
.product-img img {
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.product-img img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.product-link {
    font-size: 14px;
}
.range-slider-input {
    width: 100%;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 0 10px;
}
.range-slider-input:focus {
    outline: none;
}
#product-sort{
    font-size: 1.3rem;
    color: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    cursor: pointer;
}
.product-beden{
    font-size: 1.3rem;
    color: #0a0a0a;
    border: 1px solid #0a0a0a;
    border-radius: 5px;
    padding: 0.7rem 1rem;
    cursor: pointer;
}
.disabled{
    cursor: not-allowed;
    background-color: #2f2f2f;
}
@media (max-width: 768px) {
    .product-description .product-details {
        font-size: 12px;
        line-height: 1.5;
    }
    .product-wrapper .price span {
        font-size: 1.3rem;
    }
  
    .discount-badge {
        font-size: 9px;
    }
    .product-wrapper .product-img {
        height: 21rem;
    }
}