.basket-extra-product {
    width: 200px;
    max-width: 200px;
    min-width: 200px;
    height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
    background: var(--white-color);
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    direction: rtl;
}
.basket-extra-product-img {
    width: 100%;
    height: 220px;
    max-height: 220px;
    object-fit: fill;
    border-radius: 8px;
}
.basket-extra-product-title {
    font-size: 20px;
    margin-top: 10px;
    font-weight: bold;
    font-family: var(--font-main);
    margin-bottom: 6px;
    color: var(--black-color);
    text-align: center;
    text-decoration: none;
}
.basket-extra-product-desc {
    font-size: 12px;
    color: var(--gray-color-dark);
    text-align: center;
    font-family: var(--font-main);
    display: -webkit-box;
    font-weight: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 2.8em;
    line-height: 1.4em;
    text-decoration: none;
}
a.basket-extra-product-card,
a.basket-extra-product-card * {
    text-decoration: none !important;
    color: inherit !important;
}
a.basket-extra-product-card:hover {
    text-decoration: none !important;
}
