.cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid #e0e0e0;
            margin-bottom: 30px;
        }
        
        .cart-title {
            font-size: 28px;
            font-weight: 600;
        }
        
        .cart-content {
            display: flex;
            gap: 30px;
			width:73%;
        }
		
        
        .cart-items {
            flex: 3;
        }
        
        .cart-summary {
            flex: 1;
            background: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            align-self: flex-start;
        }
        
        .cart-item {
            display: flex;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .item-image {
            width: 150px;
            background: #f5f7fa;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 15px;
        }
        
        .item-image img {
            max-width: 100%;
            max-height: 120px;
            object-fit: contain;
        }
        
        .item-details {
            flex: 1;
            padding: 5px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }
        
        .item-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 5px;
        }
        
        .item-sku {
            color: #6c757d;
            font-size: 14px;
            margin-bottom: 10px;
        }
        
        .item-properties {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .item-property {
            display: flex;
            flex-direction: column;
        }
        
        .property-label {
            font-size: 12px;
            color: #6c757d;
            margin-bottom: 3px;
        }
        
        .property-value {
            font-size: 14px;
            font-weight: 500;
        }
        
        .item-quantity {
            width: 150px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .quantity-control {
            display: flex;
            align-items: center;
            border: 1px solid #ced4da;
            border-radius: 4px;
            width: 120px;
        }
        
        .quantity-btn {
            width: 36px;
            height: 36px;
            background: #f8f9fa;
            border: none;
            font-size: 18px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .quantity-input {
            width: 48px;
            height: 36px;
            text-align: center;
            border: none;
            border-left: 1px solid #ced4da;
            border-right: 1px solid #ced4da;
            font-size: 16px;
        }
        
        .item-price {
            width: 200px;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-end;
        }
        
        .price-amount {
            font-size: 20px;
            font-weight: 700;
            color: #212529;
            margin-bottom: 5px;
        }
        
        .price-per-item {
            font-size: 14px;
            color: #6c757d;
        }
        
        .item-remove {
            width: 100px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .remove-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            border: 1px solid #e0e0e0;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .remove-btn:hover {
            background: #f8f9fa;
            border-color: #dc3545;
            color: #dc3545;
        }
        
        .summary-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e9ecef;
        }
        
        .promo-section {
            margin-bottom: 20px;
        }
        
        .promo-label {
            font-size: 14px;
            margin-bottom: 8px;
            display: block;
            font-weight: 500;
        }
        
        .promo-input {
            display: flex;
            gap: 10px;
        }
        
        .promo-input input {
            flex: 1;
            padding: 10px 15px;
            border: 1px solid #ced4da;
            border-radius: 25px;
            font-size: 14px;
			max-width: 75%;
        }
        
        .promo-input button {
            background: #002E5D;
            border: none;
            border-radius: 25px;
            padding: 0 15px;
            cursor: pointer;
			color: #fff;
        }
        
        .price-details {
            margin-bottom: 20px;
        }
        
        .price-row {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
        }
        
        .price-row.discount {
            color: #28a745;
        }
        
        .price-row.delivery {
            border-bottom: 1px solid #e9ecef;
            padding-bottom: 15px;
            margin-bottom: 15px;
        }
        
        .price-row.total {
            font-size: 18px;
            font-weight: 700;
            padding: 10px 0;
        }
        
        .checkout-button {
            width: 100%;
            padding: 15px;
            background: #28a745;
            color: white;
            border: none;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }
        
        .checkout-button:hover {
            background: #218838;
        }
        
        .empty-cart {
            text-align: center;
            padding: 50px 0;
            font-size: 18px;
            color: #6c757d;
        }
		
		/* Индикатор загрузки */
.loader {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Позиционирование для карточки товара */
.cart-item {
    position: relative; /* Для позиционирования индикатора загрузки */
}

.cart-item {
    transition: all 0.3s ease;
}

.quantity-btn, .remove-btn {
    transition: all 0.2s ease;
}

.item-image img {
    max-height: 120px;
    transition: transform 0.3s ease;
}

.quantity-btn:hover {
    background-color: #e9ecef;
}

.remove-btn:hover {
    background-color: #fff0f0;
    color: #dc3545;
}

.cart-item {
        flex-wrap: wrap;
    }
    
    .item-image {
        width: 120px;
    }
    
    .item-details {
        flex: 2;
    }
    
    .item-quantity,
    .item-price,
    .item-remove {
        padding: 15px;
    }
  
   .bottom-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
		width:43%;
    }
	
	/* Стили для опции доставки */
.delivery-option {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 15px;
    align-items: center;
}

.delivery-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: #495057;
}

.delivery-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    left: 0;
    top: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 4px;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid #007bff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.delivery-checkbox input:checked ~ .checkmark:after {
    display: block;
}
	
/* Мобильная версия - компактное отображение товаров */
@media (min-width: 1181px) and (max-width: 1399px) {
   .cart-content {
          
			width:67%;
        }
		
		 .bottom-row {
		width:43%;
    }
}	

/* Мобильная версия - компактное отображение товаров */
@media (min-width: 793px) and (max-width: 1180px) {
   .cart-content {
          
			width:100%;
        }
		
		 .bottom-row {
		width:43%;
    }
}


@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        padding: 15px;
        position: relative;
    }
    
	 .item-image img {
        max-height: 100px;
    }
	
    .mobile-row {
        display: flex;
        width: 100%;
    }
    
    /* Верхняя строка (изображение + описание) */
    .top-row {
        margin-bottom: 15px;
    }
    
    .item-image {
        width: 30%;
        padding: 0;
    }
    
    .item-details {
        width: 70%;
        padding: 0 0 0 15px;
    }
    
    .item-name {
        font-size: 16px;
        margin-bottom: 5px;
    }
    
    .item-sku {
        font-size: 12px;
    }
    
    .item-properties {
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .item-property {
        flex: 1 0 40%;
    }
    
    /* Нижняя строка (количество + цена + удаление) */
    .bottom-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }
	
	 .cart-content {
          
			width:100%;
        }
    
    .item-quantity {
        width: auto;
        padding: 0;
        margin-right: 10px;
    }
    
    .quantity-control {
        width: 120px;
    }
    
    .item-price {
        width: auto;
        padding: 0;
        margin: 0 10px;
        align-items: flex-end;
    }
    
    .price-amount {
        font-size: 18px;
    }
    
    .price-per-item {
        font-size: 12px;
    }
    
    .item-remove {
        width: auto;
        padding: 0;
        margin-left: auto;
    }
    
    .remove-btn {
        width: 36px;
        height: 36px;
    }
	
	  .promo-input input {
			max-width: 55%;
        }
}