.cart-page {
    padding: 40px 0;
    min-height: 60vh;
}

.cart-page .container {
    max-width: 1600px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 40px;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: grid;
    grid-template-columns: 120px 1fr auto auto auto;
    gap: 20px;
    align-items: center;
    padding: 24px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.item-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
}

.item-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
}

.item-article, .item-manufacturer {
    color: #86868b;
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.current-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d1d1f;
}

.quantity-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.total-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1d1d1f;
}

.remove-item {
    color: #ff3b30;
    background: none;
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: background 0.2s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item:hover {
    background: rgba(255, 59, 48, 0.1);
}

.summary-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 24px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f7;
}

.summary-row:last-of-type {
    border-bottom: none;
}

.summary-row.total {
    padding-top: 20px;
    margin-top: 20px;
    border-top: 2px solid #f5f5f7;
    font-size: 1.125rem;
    font-weight: 600;
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #007aff;
}

.summary-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
}

.empty-cart {
    text-align: center;
    padding: 80px 20px;
}

.empty-cart-icon {
    color: #86868b;
    margin-bottom: 32px;
}

.empty-cart-title {
    font-size: 2rem;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.empty-cart-text {
    color: #86868b;
    font-size: 1.125rem;
    margin-bottom: 32px;
}

@media (max-width: 768px) {
    .cart-content {
        grid-template-columns: 1fr;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 16px;
    }
    
    .item-quantity, .item-total, .item-actions {
        grid-column: 1 / -1;
        justify-self: start;
        margin-top: 16px;
    }
    
    .item-image img {
        width: 80px;
        height: 80px;
    }
}
