.lot-card {
    border-radius: 20px;
    max-width: 407px;
    /* height: 656px; */
    background: #33383a;
    box-shadow: 6px 12px 10px 0 rgba(0, 0, 0, 0.18);
}

.lot-card__image img {
    width: 100%;
    border-radius: 6px;
    object-fit: cover;
}

.lot-card__body {
    padding: 18px;
    display: flex;
    flex-direction: column;
}

/* ЗАГОЛОВОК І ЦІНА — ЗЛІВА І СПРАВА */
.lot-card__main-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lot-card__title {
    flex: 1 1 50%;
    font-weight: 700;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
}

.lot-card__price {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    width: 150px;
    height: 53px;
    box-shadow: 3px 3px 6px 0 rgba(0, 0, 0, 0.25);
    background: #464d50;
    font-weight: 700;
    font-size: 20px;
    letter-spacing: 0.06em;
    line-height: 150%;
    text-transform: uppercase;
    color: #d0ff33;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    outline: none;
}

.lot-card__price-title {
   color: #fff;
   font-size: 18px;
   font-weight: 700;
   letter-spacing: 0.06em;
}

.lot-card__price-title span {
    color: #d0ff33;
}

.lot-card__price:hover {
    background: #5a6266;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

/* ХАРАКТЕРИСТИКИ */
.lot-card__characteristics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    list-style: none;
    padding: 0;
    /* margin: 0; */
    margin-top: 10px;
    height: 110px;
}

.lot-card__characteristic {
    font-size: 14px;
    /* padding: 3px 5px; */
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.06em;
    line-height: 150%;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
    /* margin-bottom: 6px; */
}

.lot-card__icon {
    flex-shrink: 0;
    color: #d0ff33;
}

/* ЦІНИ */
.lot-card__prices {
    border-radius: 8px;
    /* width: 348px; */
    height: 70px;
    box-shadow: 3px 4px 4px 0 rgba(0, 0, 0, 0.25);
    background: #464d50;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.price-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.price-info__label {
    font-size: 12px;
    letter-spacing: 0.06em;
    font-weight: 300;
    color: #fff;
    margin-bottom: 4px;
}

.price-info__value {
    font-size: 19px;
    letter-spacing: 0.06em;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-info__icon {
    width: 20px;
}

/* ЛІНІЯ */
.lot-card__divider {
    display: block;
    width: 100%; /* або фіксована ширина, якщо треба */
    max-width: 299px;
    margin: 14px auto; /* авто відступи по боках = центр */
    text-align: center;
}

/* ПРОФІТ */
.lot-card__profit {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.profit__text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.06em;
    line-height: 150%;
    color: #d0ff33;
}

.profit__amount {
    font-weight: 700;
    font-size: 27px;
    letter-spacing: 0.06em;
    line-height: 150%;
    color: #fff;
}

/* СЛАЙДЕР ЛОТІВ */

.swiper-button-next,
.swiper-button-prev {
    color: var(--chinazes-color) !important;
    width: 0 !important;
    margin-top: 0 !important;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 24px !important;
}

/* КНОПКА "БІЛЬШЕ" */
.more-lots-button-wrapper {
    text-align: center;
    margin-top: 30px;
}

.more-lots-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 230px;
    height: 60px;
    border-radius: 12px;
    background: #33383a;
    box-shadow: 11px 12px 7px 0 rgba(0, 0, 0, 0.19);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}

.more-lots-button:hover {
    background: #44494b;
    color: var(--chinazes-color);
}

.more-lots-button i {
    margin-left: 5px;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s ease;
    color: var(--chinazes-color);
}

.more-lots-button:hover i {
    transform: translateX(6px);
}