        /* Сетка карточек */
        .cart-list {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        /* Карточка товара */
        .cart-item {
            display: grid;
            grid-template-columns: 140px 1fr auto;
            gap: 24px;
            align-items: center;
            padding-bottom: 30px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        /* Убираем рамку у последнего элемента для красоты */
        .cart-item:last-child {
            border-bottom: none;
        }

        /* Изображение */
        .item-image {
            width: 140px;
            height: 140px;
            background-color: #f0f0f0;
            border-radius: 12px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .item-image img {
            max-width: 100%;
            max-height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Блок с описанием и количеством */
        .item-details {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            height: 140px; /* Фиксируем высоту, чтобы равнять по картинке */
            padding: 4px 0;
        }

        .item-title {
            font-size: 18px;
            font-weight: 500;
            margin-bottom: 6px;
            color: #2d2d2d;
        }

        .item-desc {
            font-size: 15px;
            color: #999999;
            font-weight: 400;
            line-height: 1.4;
        }

        /* Блок счетчика */
        .quantity-control {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: auto; /* Прижимает к низу блока */
        }

        .quantity-btn {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #1857e8; /* Ярко-синий */
            color: #ffffff;
            border: none;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background-color 0.2s;
        }

        .quantity-btn:hover {
            background-color: #1245c4;
        }

        .quantity-text {
            font-size: 16px;
            font-weight: 500;
            color: #2d2d2d;
            min-width: 40px;
            text-align: center;
        }

        /* Цена */
        .item-price {
            font-size: 18px;
            font-weight: 600;
            color: #1a1a1a;
            white-space: nowrap;
            align-self: center;
        }

        /* Адаптивность для мобильных */
        @media (max-width: 640px) {
            .cart-item {
                grid-template-columns: 100px 1fr;
                grid-template-rows: auto auto;
                gap: 16px;
            }
            
            .item-image {
                width: 100px;
                height: 100px;
            }

            .item-details {
                height: auto; /* Убираем фиксированную высоту на мобильных */
            }

            .item-price {
                grid-column: 1 / -1;
                text-align: right;
                font-size: 20px;
                justify-self: end;
                align-self: start;
                margin-top: -84px; /* Поднимаем цену на уровень заголовка */
            }

            .quantity-control {
                margin-top: 10px;
            }
        }










	h2 span {
		float: right;
		font-size: 30px;
		font-weight: 700;
	}


	.become-a-partner {
		padding: 55px 0 70px;
		
		margin-top: 60px;
		margin-bottom: 100px;
	}



	.partner-form__grid {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		width: 100%;
		margin-top: 24px;
	}

	.become-a-partner label {
		display: flex;
		flex-direction: column;
		gap: 10px;

		font-size: 18px;
		font-weight: 400;
		width: 100%;
	}

	.become-a-partner input {
		padding: 5px 20px;
		height: 46px;
		border: 1.5px solid #004CDD;
		border-radius: 50px;
		background: #fff;
		box-sizing: border-box;
		width: 100%;
	}


	.become-a-partner ._button {
		width: 100%;
		transition: all 0.3s ease;
		display: block;
		margin: 40px auto 0;
	}


	/* Блок для цены и кнопки удаления по правому краю */
.item-right-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    height: 140px;
    padding: 4px 0;
    position: relative;
}

/* Кнопка удаления (крестик) */
.btn-remove {
    background: none;
    border: none;
    color: #cccccc;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.2s, transform 0.2s;
    line-height: 1;
}

.btn-remove:hover {
    color: #e74c3c; /* Красный при наведении */
    transform: scale(1.1);
}

/* Адаптация для мобильных */
@media (max-width: 640px) {
    .item-right-block {
        height: auto; /* Сбрасываем высоту на мобильных */
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        margin-top: 10px;
        grid-column: 1 / -1; /* Растягиваем на всю ширину */
        padding: 0;
    }
    .btn-remove {
        font-size: 22px; /* Чуть больше на телефоне */
        color: #999;
    }
}